| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public static function loadValidatorMetadata(ClassMetadata $metadata) |
||
| 21 | { |
||
| 22 | $metadata->addPropertyConstraint('fecGeneracion', new Assert\Date()); |
||
| 23 | $metadata->addPropertyConstraints('fecComunicacion', [ |
||
| 24 | new Assert\NotBlank(), |
||
| 25 | new Assert\Date(), |
||
| 26 | ]); |
||
| 27 | $metadata->addPropertyConstraint('documents', new Assert\Valid()); |
||
| 28 | } |
||
| 29 | } |