| Conditions | 5 |
| Paths | 4 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 14.6179 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 51 | 5 | public function clear() |
|
| 52 | { |
||
| 53 | 5 | if (is_dir($this->getCacheDir())) { |
|
| 54 | $path = realpath($this->getCacheDir()); |
||
| 55 | if (!$this->getCacheDir() || '/' == $path) { |
||
| 56 | throw new \Exception('Invalid test setup, the cache dir is ' . $path); |
||
| 57 | } |
||
| 58 | if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { |
||
| 59 | system('DEL /S '.$path); |
||
| 60 | } else { |
||
| 61 | system('rm -r '.$path); |
||
| 62 | } |
||
| 63 | } |
||
| 64 | 5 | } |
|
| 65 | } |
||
| 66 |