Total Complexity | 6 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | class Manager |
||
29 | { |
||
30 | use Has; |
||
31 | use Paths; |
||
32 | use Resolvable; |
||
33 | |||
34 | public function load(string $path): array |
||
37 | } |
||
38 | |||
39 | public function store(string $path, array $content): void |
||
40 | { |
||
41 | $this->filesystem($path)->store($path, $content); |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @param array|string $path |
||
46 | */ |
||
47 | public function delete($path): void |
||
51 | } |
||
52 | } |
||
53 | |||
54 | protected function filesystem(string $path): Filesystem |
||
61 |