| Conditions | 4 |
| Paths | 5 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 151 | 3 | public function deleteDir() |
|
| 152 | { |
||
| 153 | 3 | $files = glob($this->getDir() . '/*'); |
|
| 154 | |||
| 155 | 3 | foreach ($files as $file) { |
|
| 156 | 2 | if ($file !== $this->getPath()) { |
|
| 157 | 1 | return false; |
|
| 158 | } |
||
| 159 | } |
||
| 160 | |||
| 161 | 3 | if (!$this->delete()) { |
|
| 162 | 1 | return false; |
|
| 163 | } |
||
| 164 | |||
| 165 | 2 | return rmdir($this->getDir()); |
|
| 166 | } |
||
| 168 |