mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 20:57:19 +00:00
22 lines
381 B
PHP
22 lines
381 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)";
|
|
}
|
|
|
|
public function addImage( $title ) {
|
|
//do nothing
|
|
}
|
|
}
|