Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class RouteInvalidConfigurationException extends RouteConfigurationException |
||
20 | { |
||
21 | /** |
||
22 | * @var string[] |
||
23 | */ |
||
24 | private array $messages; |
||
25 | |||
26 | /** |
||
27 | * @param string[] $messages |
||
28 | */ |
||
29 | public function __construct(string $routeName, array $messages, int $code = 0, ?\Throwable $previous = null) |
||
43 | ); |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * @return string[] |
||
48 | */ |
||
49 | public function getMessages(): array |
||
54 |