m1k1oblog/app/jbbcode/codedefinitionset.class.php

20 lines
328 B
PHP
Raw Normal View History

2017-09-24 18:01:23 +00:00
<?php
namespace JBBCode;
2019-12-23 17:53:18 +00:00
defined('PROJECT_PATH') OR exit('No direct script access allowed');
2017-09-24 18:01:23 +00:00
/**
* An interface for sets of code definitons.
*
* @author jbowens
*/
interface CodeDefinitionSet
{
/**
* Retrieves the CodeDefinitions within this set as an array.
*/
public function getCodeDefinitions();
}