mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 04:22:37 +00:00
9 lines
152 B
PHP
9 lines
152 B
PHP
<?php
|
|
namespace Wikia\PortableInfobox\Parser;
|
|
|
|
interface ExternalParser {
|
|
public function parse( $text );
|
|
|
|
public function parseRecursive( $text );
|
|
}
|