mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 11:59:56 +00:00
a12689378d
* replace variables in image tag * remove obsolete test
11 lines
197 B
PHP
11 lines
197 B
PHP
<?php
|
|
namespace Wikia\PortableInfobox\Parser;
|
|
|
|
interface ExternalParser {
|
|
public function parse( $text );
|
|
|
|
public function parseRecursive( $text );
|
|
|
|
public function replaceVariables( $text );
|
|
}
|