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