PortableInfobox/includes/services/Parser/SimpleParser.php
Universal Omega 79046437fd
Add CI (#3)
2021-09-09 20:52:19 -06:00

17 lines
275 B
PHP

<?php
namespace PortableInfobox\Parser;
class SimpleParser implements ExternalParser {
public function parseRecursive( $text ) {
return $text;
}
public function replaceVariables( $text ) {
return $text;
}
public function addImage( $title ) {
// do nothing
}
}