| Total Complexity | 2 | 
| Total Lines | 13 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); | ||
| 7 | final class BadRequestException extends \RuntimeException | ||
| 8 | { | ||
| 9 | /** @var ConstraintViolationListInterface */ | ||
| 10 | private $violations; | ||
| 11 | |||
| 12 | 3 | public function setViolations(ConstraintViolationListInterface $violations): void | |
| 15 | 3 | } | |
| 16 | |||
| 17 | 3 | public function getViolations(): ?ConstraintViolationListInterface | |
| 22 |