Example #1
0
 public function invalidate($id)
 {
     $dir = $this->path . $id;
     if (is_dir($dir)) {
         fs\rmDirRecursive($dir);
     }
 }
Example #2
0
 protected function tearDown()
 {
     fs\rmDirRecursive($this->storage_path);
 }