diff --git a/modules/core/quick/src/Plugin/QuickForm/QuickFormBase.php b/modules/core/quick/src/Plugin/QuickForm/QuickFormBase.php index 79f1ac1e7..2069c9434 100644 --- a/modules/core/quick/src/Plugin/QuickForm/QuickFormBase.php +++ b/modules/core/quick/src/Plugin/QuickForm/QuickFormBase.php @@ -105,13 +105,6 @@ class QuickFormBase extends PluginBase implements QuickFormInterface, ContainerF return $this->pluginDefinition['helpText'] ?? ''; } - /** - * {@inheritdoc} - */ - public function requiresEntity() { - return $this->pluginDefinition['requiresEntity'] ?? FALSE; - } - /** * {@inheritdoc} */ diff --git a/modules/core/quick/src/Plugin/QuickForm/QuickFormInterface.php b/modules/core/quick/src/Plugin/QuickForm/QuickFormInterface.php index 8a22c47e8..0fc087c7b 100644 --- a/modules/core/quick/src/Plugin/QuickForm/QuickFormInterface.php +++ b/modules/core/quick/src/Plugin/QuickForm/QuickFormInterface.php @@ -71,14 +71,6 @@ interface QuickFormInterface extends FormInterface { */ public function getPermissions(); - /** - * Whether the plugin requires a quick form instance configuration entity. - * - * @return bool - * Boolean. - */ - public function requiresEntity(); - /** * Checks access for the quick form. *