for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Data\Reader\Filter;
use Yiisoft\Data\Reader\FilterInterface;
/**
* `Not` filter negates another filter.
*/
final class Not implements FilterInterface
{
* @param FilterInterface $filter Filter to negate.
public function __construct(
private readonly FilterInterface $filter,
) {
}
public function getFilter(): FilterInterface
return $this->filter;