PortableInfobox/includes/services/Parser/SimpleParser.php

18 lines
276 B
PHP
Raw Normal View History

<?php
2022-03-11 20:35:51 +00:00
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
}
}