Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | final class ValidationElement |
||
16 | { |
||
17 | /** @var Validator $validator */ |
||
18 | public $validator; |
||
19 | /** @var scalar|callable|Closure $valueOrEnclosure */ |
||
20 | public $valueOrEnclosure; |
||
21 | |||
22 | /** |
||
23 | * ValidationElement constructor. |
||
24 | * |
||
25 | * @param scalar|callable|Closure $valueOrEnclosure |
||
26 | * @param Validator $validator |
||
27 | */ |
||
28 | public function __construct($valueOrEnclosure, Validator $validator) |
||
34 |