PortableInfobox/includes/services/Parser/SimpleParser.php
2022-03-11 13:35:51 -07:00

18 lines
276 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
}
}