PortableInfobox/includes/services/Parser/ExternalParser.php

12 lines
196 B
PHP
Raw Normal View History

<?php
2022-03-11 20:35:51 +00:00
namespace PortableInfobox\Parser;
interface ExternalParser {
public function parseRecursive( $text );
public function replaceVariables( $text );
public function addImage( $title );
}