| 1 | <?php |
||
| 9 | class MissingConfigException extends \RuntimeException |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $key; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string[] |
||
| 18 | */ |
||
| 19 | protected $trail; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * MissingConfigException constructor. |
||
| 23 | * |
||
| 24 | * @param string[] $trail |
||
| 25 | */ |
||
| 26 | public function __construct(array $trail) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | public function getKey(): string |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string[] |
||
| 48 | */ |
||
| 49 | public function getTrail(): array |
||
| 53 | } |