Remove deprecated QuickFormInterface::getId() method.

This commit is contained in:
Michael Stenta 2023-10-11 10:47:00 -04:00
parent c9ed7d316d
commit 8ff9000b4c
3 changed files with 1 additions and 20 deletions

View File

@ -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

View File

@ -70,13 +70,6 @@ class QuickFormBase extends PluginBase implements QuickFormInterface, ContainerF
return $this->quickId ?? $this->getPluginId();
}
/**
* {@inheritdoc}
*/
public function getId() {
return $this->getQuickId();
}
/**
* {@inheritdoc}
*/

View File

@ -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.
*