Conditions | 4 |
Paths | 6 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4.25 |
Changes | 0 |
1 | <?php |
||
53 | 3 | public function delete($locale = null) |
|
54 | { |
||
55 | 3 | if ($locale) { |
|
56 | $this->filesystem->deleteDir($locale); |
||
57 | } |
||
58 | |||
59 | 3 | foreach ($this->filesystem->listContents() as $content) { |
|
60 | 3 | if ($content['type'] == 'dir') { |
|
61 | 3 | $this->filesystem->deleteDir($content['path']); |
|
62 | } else { |
||
63 | $this->filesystem->delete($content['path']); |
||
64 | } |
||
65 | } |
||
66 | |||
67 | 3 | return $this; |
|
68 | } |
||
69 | } |
||
70 |