Issue #3108081 by tstoeckler, longwave: Return type for EntityTypeInterface::getFormClass() is incorrect

merge-requests/2419/head
catch 2020-01-30 14:44:22 +00:00
parent a7f702a2a5
commit d0d8e87b62
1 changed files with 3 additions and 2 deletions

View File

@ -228,8 +228,9 @@ interface EntityTypeInterface extends PluginDefinitionInterface {
* @param string $operation
* The name of the operation to use, e.g., 'default'.
*
* @return string
* The class for this operation's form for this entity type.
* @return string|null
* The class for this operation's form for this entity type or NULL if the
* entity type does not have a form class for this operation.
*
* @see \Drupal\Core\Entity\EntityFormBuilderInterface
*/