mangadex/scripts/JBBCode/InputValidator.php

21 lines
314 B
PHP
Raw Permalink Normal View History

2021-03-14 17:31:55 -04:00
<?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);
}