for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Leankoala\HealthFoundation\Filter;
use Leankoala\HealthFoundation\Check\Check;
abstract class BasicFilter implements Filter
{
/**
* @var Check
*/
private $check;
public function getIdentifier()
return $this->check->getIdentifier();
}
public function setCheck(Check $check)
$this->check = $check;
protected function getCheck()
return $this->check;