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\Iterable\Processor;
class All extends GroupProcessor
{
protected function checkResults(array $results): bool
return true;
}
public function getOperator(): string
return \Yiisoft\Data\Reader\Filter\All::getOperator();
protected function checkResult($result): ?bool
return !$result ? false : null;