1 | <?php |
||
11 | class Utils |
||
12 | { |
||
13 | /** |
||
14 | * @var Filesystem |
||
15 | */ |
||
16 | protected static $filesystem; |
||
17 | |||
18 | /** |
||
19 | * @return Filesystem |
||
20 | */ |
||
21 | public static function getFilesystem() |
||
28 | |||
29 | /** |
||
30 | * read json file data |
||
31 | * @param $file |
||
32 | * @return mixed |
||
33 | * @throws \Exception |
||
34 | */ |
||
35 | public static function readJsonFile($file) |
||
47 | } |
||
48 |