PortableInfobox/services/Parser/DummyParser.php

22 lines
381 B
PHP
Raw Normal View History

<?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)";
}
public function addImage( $title ) {
//do nothing
}
}