2015-05-04 14:43:53 +00:00
|
|
|
<?php
|
|
|
|
namespace Wikia\PortableInfobox\Parser;
|
|
|
|
|
|
|
|
interface ExternalParser {
|
|
|
|
public function parse( $text );
|
|
|
|
|
|
|
|
public function parseRecursive( $text );
|
2015-05-08 15:57:25 +00:00
|
|
|
|
|
|
|
public function replaceVariables( $text );
|
2015-05-04 14:43:53 +00:00
|
|
|
}
|