db backup prior to drupal security update
[yaffs-website] / web / core / modules / field / src / FieldConfigInterface.php
1 <?php
2
3 namespace Drupal\field;
4
5 use Drupal\Core\Config\Entity\ConfigEntityInterface;
6 use Drupal\Core\Field\FieldDefinitionInterface;
7
8 /**
9  * Provides an interface defining a field entity.
10  */
11 interface FieldConfigInterface extends ConfigEntityInterface, FieldDefinitionInterface {
12
13   /**
14    * Gets the deleted flag of the field.
15    *
16    * @return bool
17    *   Returns TRUE if the field is deleted.
18    */
19   public function isDeleted();
20
21 }