From 59fe5e752d07796d0be73385a31bc70c6ffb4a9c Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Wed, 30 May 2018 11:42:26 +0200 Subject: [PATCH] Issue #2975439 by aron.beal, martin107: ContextualController property incorrectly named --- .../modules/contextual/src/ContextualController.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/core/modules/contextual/src/ContextualController.php b/core/modules/contextual/src/ContextualController.php index 59a2ba0f9512..58e42ecd6ba1 100644 --- a/core/modules/contextual/src/ContextualController.php +++ b/core/modules/contextual/src/ContextualController.php @@ -16,12 +16,13 @@ class ContextualController implements ContainerInjectionInterface { /** * The renderer. + * * @var \Drupal\Core\Render\RendererInterface */ - protected $render; + protected $renderer; /** - * Constructors a new ContextualController + * Constructors a new ContextualController. * * @param \Drupal\Core\Render\RendererInterface $renderer * The renderer. @@ -45,10 +46,16 @@ public static function create(ContainerInterface $container) { * Given a list of contextual links IDs, render them. Hence this must be * robust to handle arbitrary input. * - * @see contextual_preprocess() + * @param \Symfony\Component\HttpFoundation\Request $request + * The Symfony request object. * * @return \Symfony\Component\HttpFoundation\JsonResponse * The JSON response. + * + * @throws \Symfony\Component\HttpKernel\Exception\BadRequestHttpException + * Thrown when the request contains no ids. + * + * @see contextual_preprocess() */ public function render(Request $request) { $ids = $request->request->get('ids'); -- GitLab