Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\field\FieldConfigInterface. | |
*/ | |
namespace Drupal\field; | |
use Drupal\Core\Config\Entity\ConfigEntityInterface; | |
use Drupal\Core\Field\FieldDefinitionInterface; | |
/** | |
* Provides an interface defining a field entity. | |
*/ | |
interface FieldConfigInterface extends ConfigEntityInterface, FieldDefinitionInterface { | |
/** | |
* Gets the deleted flag of the field. | |
* | |
* @return bool | |
* Returns TRUE if the field is deleted. | |
*/ | |
public function isDeleted(); | |
} |