Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class InvalidSymbolCodeException extends DomainException implements ExceptionInterface |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @var AttributeInterface |
||
16 | */ |
||
17 | private $attribute; |
||
18 | |||
19 | /** |
||
20 | * @param AttributeInterface $attribute |
||
21 | * @param Throwable|null $previous |
||
22 | */ |
||
23 | 5 | public function __construct(AttributeInterface $attribute, Throwable $previous = null) |
|
27 | 5 | } |
|
28 | |||
29 | /** |
||
30 | * @return AttributeInterface |
||
31 | * @psalm-pure |
||
32 | */ |
||
33 | 1 | public function getAttribute(): AttributeInterface |
|
38 |