예제 #1
0
파일: Collection.php 프로젝트: kmfk/slowdb
 /**
  * Removes the Collection database file
  *
  * @return bool
  */
 public function drop()
 {
     $filepath = $this->file->getFilePath();
     unset($this->file);
     if (!file_exists($filepath)) {
         unlink($filepath);
     }
     return true;
 }