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 array validator.
*
* @package JSON table
*/
class ArrayValidator extends AbstractFormatValidator
{
* Validate that the input is a valid null.
* @return boolean Whether the input is valid.
protected function formatDefault()
return false;
}