PortableInfobox/includes/services/Parser/SimpleParser.php

17 lines
275 B
PHP
Raw Normal View History

<?php
namespace PortableInfobox\Parser;
class SimpleParser implements ExternalParser {
public function parseRecursive( $text ) {
return $text;
}
public function replaceVariables( $text ) {
return $text;
}
public function addImage( $title ) {
2021-09-10 02:52:19 +00:00
// do nothing
}
}