Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
42 | public function __construct( |
||
43 | string $fieldName, |
||
44 | bool $required, |
||
45 | ?callable $condition, |
||
46 | bool $isArray, |
||
47 | Strategy $strategy |
||
48 | ) { |
||
49 | $this->fieldName = $fieldName; |
||
50 | $this->required = $required; |
||
51 | $this->condition = $condition; |
||
52 | $this->isArray = $isArray; |
||
53 | $this->strategy = $strategy; |
||
54 | } |
||
96 |