Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
22 | 3 | public function handle($dirname) |
|
23 | { |
||
24 | 3 | $listing = $this->filesystem->listContents($dirname, false); |
|
25 | |||
26 | 3 | foreach ($listing as $item) { |
|
27 | 3 | if ($item['type'] === 'dir') { |
|
28 | 3 | $this->filesystem->deleteDir($item['path']); |
|
29 | 3 | } else { |
|
30 | 3 | $this->filesystem->delete($item['path']); |
|
31 | } |
||
32 | 3 | } |
|
33 | 3 | } |
|
34 | } |
||
35 |