PortableInfobox/includes/services/Parser/SimpleParser.php

19 lines
300 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 ): ?string {
2021-09-10 02:52:19 +00:00
// do nothing
return null;
}
}