PortableInfobox/services/Parser/ExternalParser.php

13 lines
235 B
PHP

<?php
namespace Wikia\PortableInfobox\Parser;
interface ExternalParser {
public function parse( $text );
public function parseRecursive( $text );
public function replaceVariables( $text );
public function addImage( $title );
}