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 Feature
*
* @package Example\Table\Items
class Feature extends AbstractItem
{
* @var string
protected $feature;
protected $expectedFeature;
* @param string $feature - the feature you want to met for
public function setFeature($feature)
$this->feature = (string) $feature;
}
* {$inheritdoc}
public function isMet()
return (strtolower($this->feature) == $this->expectedFeature);