Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 0 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | 1 | public function __construct( |
|
23 | /** |
||
24 | * @var iterable<RuleInterface|RuleInterface[]> |
||
25 | */ |
||
26 | public iterable $rules = [], |
||
27 | public string $incorrectInputMessage = 'Value should be array or iterable.', |
||
28 | public string $message = '{error} {value} given.', |
||
29 | public bool $skipOnEmpty = false, |
||
30 | public bool $skipOnError = false, |
||
31 | public ?Closure $when = null, |
||
32 | ) { |
||
33 | } |
||
48 |