Exemplo n.º 1
0
 /**
  * @return bool|int
  * @throws \Exception
  */
 public function delete()
 {
     //Сначала удалить файл
     try {
         $cluster = $this->cluster;
         $cluster->deleteTmpDir($this->cluster_file);
         $cluster->delete($this->cluster_file);
     } catch (\common\components\storage\Exception $e) {
         return false;
     }
     return parent::delete();
 }