diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f40a56c4..119ca1ee0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - [Issue #3382616: Remove v1 migrations from farmOS 3.x](https://www.drupal.org/project/farm/issues/3382616) +- [QuickFormInterface::getId() is replaced by QuickFormInterface::getQuickId()](https://www.drupal.org/node/3379686) ## [2.2.2] 2023-10-25 diff --git a/modules/core/quick/src/Plugin/QuickForm/QuickFormBase.php b/modules/core/quick/src/Plugin/QuickForm/QuickFormBase.php index 2069c9434..41b693009 100644 --- a/modules/core/quick/src/Plugin/QuickForm/QuickFormBase.php +++ b/modules/core/quick/src/Plugin/QuickForm/QuickFormBase.php @@ -70,13 +70,6 @@ class QuickFormBase extends PluginBase implements QuickFormInterface, ContainerF return $this->quickId ?? $this->getPluginId(); } - /** - * {@inheritdoc} - */ - public function getId() { - return $this->getQuickId(); - } - /** * {@inheritdoc} */ diff --git a/modules/core/quick/src/Plugin/QuickForm/QuickFormInterface.php b/modules/core/quick/src/Plugin/QuickForm/QuickFormInterface.php index 0fc087c7b..c720aacaf 100644 --- a/modules/core/quick/src/Plugin/QuickForm/QuickFormInterface.php +++ b/modules/core/quick/src/Plugin/QuickForm/QuickFormInterface.php @@ -26,19 +26,6 @@ interface QuickFormInterface extends FormInterface { */ public function setQuickId(string $id); - /** - * Returns the quick form ID. - * - * @return string - * The quick form ID. - * - * @deprecated in farm:2.2.0 and is removed from farm:3.0.0. - * Use QuickFormInterface::getQuickId() instead. - * - * @see https://www.drupal.org/node/3379686 - */ - public function getId(); - /** * Returns the quick form label. *