PortableInfobox/services/Parser/SimpleParser.php

13 lines
228 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 );
}
}