Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class InvalidEventConfigurationFormatException extends InvalidArgumentException implements FriendlyExceptionInterface |
||
11 | { |
||
12 | /** |
||
13 | * @inheritDoc |
||
14 | */ |
||
15 | public function getName(): string |
||
16 | { |
||
17 | return 'Configuration format passed to EventConfigurator is invalid'; |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @inheritDoc |
||
22 | */ |
||
23 | public function getSolution(): ?string |
||
26 | EventConfigurator accepts an array in a such format: |
||
27 | [ |
||
35 |