mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 20:09:44 +00:00
11 lines
195 B
PHP
11 lines
195 B
PHP
<?php
|
|
namespace PortableInfobox\Parser;
|
|
|
|
interface ExternalParser {
|
|
public function parseRecursive( $text );
|
|
|
|
public function replaceVariables( $text );
|
|
|
|
public function addImage( $title );
|
|
}
|