PortableInfobox/services/Parser/ExternalParser.php

11 lines
201 B
PHP

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