From fc54bd66c42d79d77f5b37326fe57b930f8d8dde Mon Sep 17 00:00:00 2001 From: Bojan Zivanovic <bojanz@gmail.com> Date: Mon, 15 Feb 2016 01:24:01 +0100 Subject: [PATCH] Clean up EntityCreateController: Remove unused parameter from addPage(), document thrown exception in addForm(). --- src/Controller/EntityCreateController.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Controller/EntityCreateController.php b/src/Controller/EntityCreateController.php index bece86b..f6b6896 100644 --- a/src/Controller/EntityCreateController.php +++ b/src/Controller/EntityCreateController.php @@ -65,14 +65,12 @@ class EntityCreateController extends ControllerBase { * * @param string $entity_type_id * The entity type ID. - * @param \Symfony\Component\HttpFoundation\Request $request - * The request. * * @return \Symfony\Component\HttpFoundation\RedirectResponse|array * If there's only one available bundle, a redirect response. * Otherwise, a render array with the add links for each bundle. */ - public function addPage($entity_type_id, Request $request) { + public function addPage($entity_type_id) { $entity_type = $this->entityTypeManager()->getDefinition($entity_type_id); $bundle_type = $entity_type->getBundleEntityType(); $bundle_key = $entity_type->getKey('bundle'); @@ -137,6 +135,9 @@ class EntityCreateController extends ControllerBase { * * @return array * The add form. + * + * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException + * Thrown when the bundle parameter is invalid. */ public function addForm($entity_type_id, RouteMatchInterface $route_match) { $entity_type = $this->entityTypeManager()->getDefinition($entity_type_id); -- GitLab