| 1 | <?php |
||
| 10 | class KeyIsNotDefinedException extends OutOfBoundsException |
||
| 11 | { |
||
| 12 | /** @var mixed */ |
||
| 13 | protected $key; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param mixed $key |
||
| 17 | */ |
||
| 18 | public function __construct($key) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | public function getKey() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | protected function getKeyAsString() |
||
| 43 | } |
||
| 44 |