deleteField() abstract public method

Deletes the field with the given $fieldId.
abstract public deleteField ( integer $fieldId )
$fieldId integer
 /**
  * Deletes the field with the given $fieldId
  *
  * @param int $fieldId
  *
  * @return void
  */
 public function deleteField($fieldId)
 {
     try {
         return $this->innerGateway->deleteField($fieldId);
     } catch (DBALException $e) {
         throw new RuntimeException('Database error', 0, $e);
     } catch (PDOException $e) {
         throw new RuntimeException('Database error', 0, $e);
     }
 }