mirror of
https://github.com/holo-gfx/mangadex.git
synced 2024-11-25 03:18:22 -05:00
23 lines
325 B
PHP
23 lines
325 B
PHP
|
<?php
|
||
|
|
||
|
namespace JBBCode;
|
||
|
|
||
|
require_once 'CodeDefinition.php';
|
||
|
|
||
|
use JBBCode\CodeDefinition;
|
||
|
|
||
|
/**
|
||
|
* An interface for sets of code definitons.
|
||
|
*
|
||
|
* @author jbowens
|
||
|
*/
|
||
|
interface CodeDefinitionSet
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Retrieves the CodeDefinitions within this set as an array.
|
||
|
*/
|
||
|
public function getCodeDefinitions();
|
||
|
|
||
|
}
|