diff --git a/core/lib/Drupal/Core/Field/FieldItemInterface.php b/core/lib/Drupal/Core/Field/FieldItemInterface.php index ea691bf..f6685b1 100644 --- a/core/lib/Drupal/Core/Field/FieldItemInterface.php +++ b/core/lib/Drupal/Core/Field/FieldItemInterface.php @@ -424,7 +424,7 @@ public static function calculateDependencies(FieldDefinitionInterface $field_def * Dependencies are saved in the field storage configuration entity and are * used to determine configuration synchronization order. For example, if the * field type storage depends on a particular entity type, this method should - * return an array of dependencies listing module that provides the entity + * return an array of dependencies listing the module that provides the entity * type. * * Dependencies added here affect the storage and therefore are always diff --git a/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/EntityReferenceItem.php b/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/EntityReferenceItem.php index baf6b0a..9e76afb 100644 --- a/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/EntityReferenceItem.php +++ b/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/EntityReferenceItem.php @@ -446,7 +446,7 @@ public static function calculateDependencies(FieldDefinitionInterface $field_def } /** - * @inheritDoc + * {@inheritdoc} */ public static function calculateStorageDependencies(FieldStorageDefinitionInterface $field_definition) { $dependencies = parent::calculateStorageDependencies($field_definition); diff --git a/core/modules/system/src/Tests/Entity/EntityReferenceFieldTest.php b/core/modules/system/src/Tests/Entity/EntityReferenceFieldTest.php index 093cd47..d372902 100644 --- a/core/modules/system/src/Tests/Entity/EntityReferenceFieldTest.php +++ b/core/modules/system/src/Tests/Entity/EntityReferenceFieldTest.php @@ -431,7 +431,7 @@ public function testEntityReferenceFieldDependencies() { 'bundle' => 'entity_test', 'label' => $field_name, 'settings' => array( - 'handler' => 'default' + 'handler' => 'default', ), )); $field->save();