| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | public function clear() |
||
| 52 | { |
||
| 53 | // Runs as sudo to make sure it can be removed |
||
| 54 | $this->runCommand([ |
||
| 55 | 'rm', |
||
| 56 | '-rf', |
||
| 57 | $this->getCacheDir(), |
||
| 58 | ], true); |
||
| 59 | |||
| 60 | // Does not run as sudo to make sure it's created using the correct user |
||
| 61 | $this->runCommand([ |
||
| 62 | 'mkdir', |
||
| 63 | '-p', |
||
| 64 | $this->getCacheDir(), |
||
| 65 | ]); |
||
| 66 | |||
| 67 | $this->start(); |
||
| 68 | } |
||
| 69 | |||
| 86 |