for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Smoren\Validator\Checks;
use Smoren\Validator\Interfaces\CheckInterface;
use Smoren\Validator\Interfaces\MixedRuleInterface;
abstract class CompositeCheck implements CheckInterface
{
/**
* @var array<MixedRuleInterface>
*/
protected array $rules;
* @param array<MixedRuleInterface> $rules
public function __construct(array $rules)
$this->rules = $rules;
}