Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 20% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class BadGeneratorDeclarationException extends BadDeclarationException implements FriendlyExceptionInterface |
||
11 | { |
||
12 | public function __construct($argument) |
||
13 | { |
||
14 | parent::__construct('Generator', GeneratorInterface::class, $argument); |
||
15 | } |
||
16 | public function getName(): string |
||
19 | } |
||
20 | public function getSolution(): ?string |
||
26 | } |
||
27 | } |
||
28 |