1 | <?php |
||
8 | final class NonExistentValue |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | private $value; |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $pointer; |
||
18 | 10 | ||
19 | /** |
||
20 | 10 | * @param string $value The referenced value. |
|
21 | 10 | * @param string $pointer The full pointer which contains the invalid value. |
|
22 | */ |
||
23 | public function __construct($value, $pointer) |
||
28 | 6 | ||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getValue() |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getPointer() |
||
44 | } |
||
45 |