diff --git a/core/lib/Drupal/Core/Entity/Annotation/EntityType.php b/core/lib/Drupal/Core/Entity/Annotation/EntityType.php index 4fb7ab6..0487d03 100644 --- a/core/lib/Drupal/Core/Entity/Annotation/EntityType.php +++ b/core/lib/Drupal/Core/Entity/Annotation/EntityType.php @@ -60,6 +60,7 @@ class EntityType extends Plugin { * class must implement \Drupal\Core\Entity\EntityRenderControllerInterface. * - access: The name of the class that is used for access checks. The class * must implement \Drupal\Core\Entity\EntityAccessControllerInterface. + * Defaults to \Drupal\Core\Entity\EntityAccessController. * - translation: The name of the controller class that should be used to * handle the translation process. The class must implement * \Drupal\translation_entity\EntityTranslationControllerInterface. @@ -70,9 +71,6 @@ class EntityType extends Plugin { * @var array */ public $controllers = array( - 'storage' => 'Drupal\Core\Entity\DatabaseStorageController', - 'form' => array('Drupal\Core\Entity\EntityFormController'), - 'list' => 'Drupal\Core\Entity\EntityListController', 'access' => 'Drupal\Core\Entity\EntityAccessController', );