mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 04:22:37 +00:00
11 lines
201 B
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 );
|
|
}
|