PortableInfobox/services/Parser/DummyParser.php
marzjan a12689378d DAT-2760 Support images in diffent formats
* replace variables in image tag
* remove obsolete test
2015-05-08 15:59:00 +00:00

18 lines
324 B
PHP

<?php
namespace Wikia\PortableInfobox\Parser;
class DummyParser implements ExternalParser {
public function parse( $text ) {
return "parse($text)";
}
public function parseRecursive( $text ) {
return "parseRecursive($text)";
}
public function replaceVariables( $text ) {
return "replaceVariables($text)";
}
}