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