1 | <?php |
||
8 | class JsonLoader { |
||
9 | |||
10 | /** |
||
11 | * @var mixed |
||
12 | */ |
||
13 | private $data; |
||
14 | |||
15 | /** |
||
16 | * @param string $path |
||
17 | * @throws InvalidJsonException |
||
18 | * @throws NotReadableException |
||
19 | */ |
||
20 | 3 | public function __construct($path) |
|
30 | |||
31 | /** |
||
32 | * @return mixed |
||
33 | */ |
||
34 | 1 | public function getData() |
|
38 | |||
39 | } |
||
40 |