for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JsonTable\Validate\Format;
use \JsonTable\Validate\AbstractFormatValidator;
/**
* Lexical any validator.
*
* @package JSON table
*/
class AnyValidator extends AbstractFormatValidator
{
* Validate that the input is a valid any.
* This doesn't do any checks and always returns true.
* @access protected
* @return boolean Whether the input is valid.
protected function formatDefault()
return true;
}