| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 67 | public function clear() |
||
| 68 | { |
||
| 69 | // Runs as sudo to make sure it can be removed |
||
| 70 | $this->runCommand([ |
||
| 71 | 'rm', |
||
| 72 | '-rf', |
||
| 73 | $this->getCacheDir(), |
||
| 74 | ], true); |
||
| 75 | |||
| 76 | // Does not run as sudo to make sure it's created using the correct user |
||
| 77 | $this->runCommand([ |
||
| 78 | 'mkdir', |
||
| 79 | '-p', |
||
| 80 | $this->getCacheDir(), |
||
| 81 | ]); |
||
| 82 | |||
| 83 | $this->start(); |
||
| 84 | } |
||
| 85 | |||
| 102 |