diff --git a/core/lib/Drupal/Core/Field/FieldItemInterface.php b/core/lib/Drupal/Core/Field/FieldItemInterface.php index 6d87f50..25bad4e 100644 --- a/core/lib/Drupal/Core/Field/FieldItemInterface.php +++ b/core/lib/Drupal/Core/Field/FieldItemInterface.php @@ -256,6 +256,7 @@ public static function defaultInstanceSettings(); * * @param array $settings * The field's settings in the field type's canonical representation. + * * @return array * An array (either the unmodified $settings or a modified representation) * that is suitable for storing as a deployable configuration value. @@ -272,6 +273,7 @@ public static function settingsToConfigData(array $settings); * * @param array $settings * The field's settings, as it is stored within a configuration object. + * * @return array * The settings, in the representation expected by the field type and code * that interacts with it. @@ -289,6 +291,7 @@ public static function settingsFromConfigData(array $settings); * @param array $settings * The field's instance settings in the field type's canonical * representation. + * * @return array * An array (either the unmodified $settings or a modified representation) * that is suitable for storing as a deployable configuration value. @@ -307,6 +310,7 @@ public static function instanceSettingsToConfigData(array $settings); * @param array $settings * The field's instance settings, as it is stored within a configuration * object. + * * @return array * The instance settings, in the representation expected by the field type * and code that interacts with it.