| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public static function loadValidatorMetadata(ClassMetadata $metadata) |
||
| 21 | { |
||
| 22 | $metadata->addPropertyConstraints('moneda', [ |
||
| 23 | new Assert\NotBlank(), |
||
| 24 | new Assert\Length(['min' => 3, 'max' => 3]), |
||
| 25 | ]); |
||
| 26 | $metadata->addPropertyConstraint('importe', new Assert\NotBlank()); |
||
| 27 | $metadata->addPropertyConstraints('fecha', [ |
||
| 28 | new Assert\NotBlank(), |
||
| 29 | new Assert\Date(), |
||
| 30 | ]); |
||
| 31 | } |
||
| 32 | } |