Example #1
0
 public function remove(EdkRoute $item)
 {
     $this->transaction->requestTransaction();
     try {
         $item->cleanupFiles($this->fileRepository);
         return $item->remove($this->conn);
     } catch (Exception $ex) {
         $this->transaction->requestRollback();
         throw $ex;
     }
 }