Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | final class TimestampedValidator implements ValidatorInterface |
||
25 | { |
||
26 | private ValidatorInterface $decorated; |
||
27 | private TimestampedAnnotationReader $annotationReader; |
||
28 | |||
29 | public function __construct(ValidatorInterface $decorated, TimestampedAnnotationReader $annotationReader) |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function validate($data, array $context = []): void |
||
51 |