| Total Complexity | 5 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class DataUtils |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Read a JSON file, and convert it to an array. |
||
| 17 | * |
||
| 18 | * @param string $jsonFile JSON file. |
||
| 19 | * |
||
| 20 | * @return mixed[] JSON loaded in an array. |
||
| 21 | * |
||
| 22 | * @throws IOException JSON file is not readable |
||
| 23 | * @throws BadRulesException JSON file badly formatted. |
||
| 24 | */ |
||
| 25 | public static function loadJson(string $jsonFile): array |
||
| 43 |