mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 20:09:44 +00:00
13 lines
228 B
PHP
13 lines
228 B
PHP
|
<?php
|
||
|
namespace Wikia\PortableInfobox\Parser;
|
||
|
|
||
|
class SimpleParser implements ExternalParser {
|
||
|
public function parse( $text ) {
|
||
|
return $text;
|
||
|
}
|
||
|
|
||
|
public function parseRecursive( $text ) {
|
||
|
return $this->parse( $text );
|
||
|
}
|
||
|
|
||
|
}
|