Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
62 | public function clear() |
||
63 | { |
||
64 | var_dump(scandir($this->getCacheDir())); |
||
|
|||
65 | $iterator = new DirectoryIterator($this->getCacheDir()); |
||
66 | var_dump(posix_getpwuid($iterator->getOwner())); |
||
67 | |||
68 | $this->runCommand([ |
||
69 | 'rm', |
||
70 | '-rf', |
||
71 | $this->getCacheDir(), |
||
72 | ], true); |
||
73 | |||
74 | $this->start(); |
||
75 | } |
||
76 | |||
93 |