From efee7757adaaa5a81eb6f6c4065329239bf96365 Mon Sep 17 00:00:00 2001 From: webchick Date: Sat, 17 Jan 2015 21:59:59 -0800 Subject: [PATCH] Issue #2090969 by lokapujya, tstoeckler, mgifford, mikemiles86: Minor code-style issues in SessionTestController --- .../session_test/src/Controller/SessionTestController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php b/core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php index 9deae9fe111..abaaa4c6d79 100644 --- a/core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php +++ b/core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php @@ -16,6 +16,7 @@ use Symfony\Component\HttpFoundation\Response; * Controller providing page callbacks for the action admin interface. */ class SessionTestController extends ControllerBase { + /** * Prints the stored session value to the screen. * @@ -123,4 +124,5 @@ class SessionTestController extends ControllerBase { public function isLoggedIn() { return ['#markup' => $this->t('User is logged in.')]; } + }