From ad031188bca7578ce1ad706554be077a90af18a0 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Mon, 19 May 2025 09:07:08 +0200 Subject: feat(Http): Add RequestHeader attribute Signed-off-by: provokateurin --- .../AppFramework/Http/Attribute/RequestHeader.php | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 lib/public/AppFramework/Http/Attribute/RequestHeader.php (limited to 'lib/public/AppFramework') diff --git a/lib/public/AppFramework/Http/Attribute/RequestHeader.php b/lib/public/AppFramework/Http/Attribute/RequestHeader.php new file mode 100644 index 00000000000..c9327eec4c0 --- /dev/null +++ b/lib/public/AppFramework/Http/Attribute/RequestHeader.php @@ -0,0 +1,50 @@ +name; + } + + /** + * @return string The description of the request header. + * + * @since 32.0.0 + */ + public function getDescription(): string { + return $this->description; + } +} -- cgit v1.2.3