| Total Complexity | 5 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class PropertyFileNotLoadedException extends RuntimeException implements ExceptionInterface |
||
| 11 | { |
||
| 12 | |||
| 13 | private $propertyName; |
||
| 14 | |||
| 15 | private $propertyFile; |
||
| 16 | |||
| 17 | private $errorMessage; |
||
| 18 | |||
| 19 | public function __construct( |
||
| 29 | } |
||
| 30 | |||
| 31 | private function buildMessage(): string |
||
| 40 | } |
||
| 41 | |||
| 42 | public function getPropertyName(): string |
||
| 45 | } |
||
| 46 | |||
| 47 | public function getPropertyFile(): string |
||
| 52 |