PortableInfobox/services/Parser/ExternalParser.php

11 lines
197 B
PHP
Raw Normal View History

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