for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Psi\Component\Grid\Filter;
use Psi\Component\Grid\FilterDataInterface;
class BooleanFilterData implements FilterDataInterface
{
private $value;
public function __construct(bool $value = null)
$this->value = $value;
}
public function getValue()
return $this->value;