1 | <?php |
||
7 | final class ValidatorConfig |
||
8 | { |
||
9 | private $requiredAIs = []; |
||
10 | private $forbiddenAIs = []; |
||
11 | private $allowEmpty = false; |
||
12 | |||
13 | 2 | public function getRequiredAIs(): array |
|
17 | |||
18 | 1 | public function setRequiredAIs(array $requiredAIs): self |
|
23 | |||
24 | 2 | public function getForbiddenAIs(): array |
|
28 | |||
29 | 1 | public function setForbiddenAIs(array $forbiddenAIs): self |
|
34 | |||
35 | 2 | public function isAllowEmpty(): bool |
|
39 | |||
40 | 1 | public function setAllowEmpty(bool $allowEmpty): self |
|
45 | } |