mangadex/scripts/JBBCode/InputValidator.php
2021-03-14 14:31:55 -07:00

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);
}