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