PortableInfobox/services/Parser/SimpleParser.php

17 lines
293 B
PHP
Raw Normal View History

<?php
namespace Wikia\PortableInfobox\Parser;
class SimpleParser implements ExternalParser {
public function parse( $text ) {
return $text;
}
public function parseRecursive( $text ) {
return $this->parse( $text );
}
public function replaceVariables( $text ) {
return $text;
}
}