mirror of
https://github.com/holo-gfx/mangadex.git
synced 2024-11-25 03:48:20 -05:00
21 lines
314 B
PHP
21 lines
314 B
PHP
|
<?php
|
||
|
|
||
|
namespace JBBCode;
|
||
|
|
||
|
/**
|
||
|
* Defines an interface for validation filters for bbcode options and
|
||
|
* parameters.
|
||
|
*
|
||
|
* @author jbowens
|
||
|
* @since May 2013
|
||
|
*/
|
||
|
interface InputValidator
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Returns true iff the given input is valid, false otherwise.
|
||
|
*/
|
||
|
public function validate($input);
|
||
|
|
||
|
}
|