Пример #1
0
 /**
  * Delete a key.
  *
  * @param string $table
  *            Table name.
  * @param string $key
  *            Key name.
  */
 protected function deleteKey($table, $key)
 {
     try {
         $this->db->deleteKey($table, $key);
         $this->definition->deleteKey($table, $key);
     } catch (\Exception $e) {
         if (!$this->ignoreExceptions) {
             throw $e;
         }
     }
 }