for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author stev leibelt <[email protected]>
* @since 2013-08-12
*/
namespace Example\Validator;
* Class HeightValidator
*
* @package Example\Validator
class HeightValidator extends AbstractTableValidator
{
* @return bool
public function isMet()
$height = $this->table->getHeight();
$maxHeight = 90;
$minHeight = 70;
return (($height >= $minHeight) && ($height <= $maxHeight));
}