Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 60% |
Changes | 0 |
1 | <?php |
||
9 | final class InvalidPropertyNameException extends LogicException implements XlsxException |
||
10 | { |
||
11 | private string $propertyName; |
||
12 | |||
13 | 4 | public function __construct(string $propertyName) |
|
14 | { |
||
15 | 4 | parent::__construct("Invalid property name $propertyName"); |
|
16 | 4 | $this->propertyName = $propertyName; |
|
17 | } |
||
18 | |||
19 | public function getPropertyName(): string |
||
22 | } |
||
23 | } |
||
24 |