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