From 5ccafb08f9f6a3903870044f6841c20fed15c7ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chris=20M=C3=BCller?= Date: Wed, 20 Dec 2023 19:10:56 +0100 Subject: [PATCH] [DOCS] Fix code example in comment of UserSessionManager MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves: #102706 Releases: main, 12.4 Change-Id: Ia250046ca8e36a82012555a8ed4e638e3746c787 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82265 Tested-by: Garvin Hicking Reviewed-by: Oliver Klee Tested-by: core-ci Reviewed-by: Garvin Hicking Tested-by: Stefan Bürk Tested-by: Oliver Klee Reviewed-by: Stefan Bürk --- typo3/sysext/core/Classes/Session/UserSessionManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/core/Classes/Session/UserSessionManager.php b/typo3/sysext/core/Classes/Session/UserSessionManager.php index 59d13b1cd334..4e2c426e72ea 100644 --- a/typo3/sysext/core/Classes/Session/UserSessionManager.php +++ b/typo3/sysext/core/Classes/Session/UserSessionManager.php @@ -36,7 +36,7 @@ * The UserSessionManager can be retrieved using its static factory method create(): * * ``` - * use TYPO3\CMS\Core\Session\UserSessionManager + * use TYPO3\CMS\Core\Session\UserSessionManager; * * $loginType = 'BE'; // or 'FE' for frontend * $userSessionManager = UserSessionManager::create($loginType);