for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace KGzocha\Searcher\Criteria;
/**
* In some cases you might find AlwaysAppliedCriteria useful, as you might use it to trigger
* some CriteriaBuilder, which will add some very important constraints to the QueryBuilder.
*
* @author Krzysztof Gzocha <[email protected]>
*/
class AlwaysAppliedCriteria implements CriteriaInterface
{
* {@inheritdoc}
public function shouldBeApplied(): bool
return true;
}