| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | protected function clearData(): void |
||
| 25 | { |
||
| 26 | clearstatcache(); |
||
| 27 | $this->rmFile('another' . DIRECTORY_SEPARATOR . 'sub_one' . DIRECTORY_SEPARATOR . '.gitkeep'); |
||
| 28 | $this->rmDir('another' . DIRECTORY_SEPARATOR . 'sub_one'); |
||
| 29 | $this->rmDir('another'); |
||
| 30 | clearstatcache(); |
||
| 31 | $this->rmDir('sub' . DIRECTORY_SEPARATOR . 'added'); |
||
| 32 | $this->rmDir('more' . DIRECTORY_SEPARATOR . 'added'); |
||
| 33 | clearstatcache(); |
||
| 34 | $this->rmFile('more' . DIRECTORY_SEPARATOR . 'sub_one' . DIRECTORY_SEPARATOR . '.gitkeep'); |
||
| 35 | $this->rmDir('more' . DIRECTORY_SEPARATOR . 'sub_one'); |
||
| 36 | $this->rmDir('more'); |
||
| 37 | clearstatcache(); |
||
| 38 | } |
||
| 68 |