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