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