for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author stev leibelt <[email protected]>
* @since 2013-06-26
*/
namespace Example\Table\Items;
use Net\Bazzline\Component\Requirement\AbstractItem;
* Class Height
*
* @package Example\Table\Items
class Height extends AbstractItem
{
* @var string
protected $height;
protected $expectedHeight;
* @param string $height - the color you want to met for
public function setHeight($height)
$this->height = (string) $height;
}
* {$inheritdoc}
public function isMet()
return (strtolower($this->height) == $this->expectedHeight);