From af46e6ab7ac1cb3ca911f0170dac5dd3d7a4f17e Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Thu, 26 Jan 2023 12:16:25 +0100 Subject: [PATCH] fixup! feat(app-framework): Add UseSession attribute to replace annotation Signed-off-by: Christoph Wurst --- lib/public/AppFramework/Http/Attribute/UseSession.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/public/AppFramework/Http/Attribute/UseSession.php b/lib/public/AppFramework/Http/Attribute/UseSession.php index 446686b93683f..79185919defbb 100644 --- a/lib/public/AppFramework/Http/Attribute/UseSession.php +++ b/lib/public/AppFramework/Http/Attribute/UseSession.php @@ -27,6 +27,11 @@ use Attribute; +/** + * Attribute for controller methods that need to read/write PHP session data + * + * @since 26.0.0 + */ #[Attribute] class UseSession { }