| 1 | <?php |
||
| 7 | class JsonDataset |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var object |
||
| 12 | */ |
||
| 13 | private $jsonObject; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * JsonDataset constructor. |
||
| 17 | * @param $json |
||
| 18 | * @throws DatasetException |
||
| 19 | */ |
||
| 20 | 8 | public function __construct($json) |
|
| 53 | |||
| 54 | /** |
||
| 55 | * @access public |
||
| 56 | * @param string $path |
||
| 57 | * @param bool $throwErr |
||
| 58 | * @return GenericIterator |
||
| 59 | */ |
||
| 60 | 7 | public function getIterator($path = "", $throwErr = false) |
|
| 65 | } |
||
| 66 |