Remove requiresEntity() method.

This commit is contained in:
Michael Stenta 2023-08-14 14:25:44 -04:00
parent 89be8e6359
commit de8a262685
2 changed files with 0 additions and 15 deletions

View File

@ -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}
*/

View File

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