From 126b594c58ebd9edd198fa3d772d6e56eeec7871 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 14 Mar 2018 23:45:37 +0000 Subject: [PATCH] Issue #2921734 by TR: Fix ControllerBase stateService documentation --- core/lib/Drupal/Core/Controller/ControllerBase.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Drupal/Core/Controller/ControllerBase.php b/core/lib/Drupal/Core/Controller/ControllerBase.php index 241936753a7..68c2655a576 100644 --- a/core/lib/Drupal/Core/Controller/ControllerBase.php +++ b/core/lib/Drupal/Core/Controller/ControllerBase.php @@ -93,7 +93,7 @@ abstract class ControllerBase implements ContainerInjectionInterface { /** * The state service. * - * @var \Drupal\Core\KeyValueStore\KeyValueStoreInterface + * @var \Drupal\Core\State\StateInterface */ protected $stateService; @@ -222,7 +222,7 @@ abstract class ControllerBase implements ContainerInjectionInterface { * needs to be the same across development, production, etc. environments * (for example, the system maintenance message) should use config() instead. * - * @return \Drupal\Core\KeyValueStore\KeyValueStoreInterface + * @return \Drupal\Core\State\StateInterface */ protected function state() { if (!$this->stateService) {