From 18e04e1c5ac13c90cd79ea4d8a0667c7392f4a95 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Tue, 3 Jun 2025 11:01:58 +0200 Subject: [PATCH] chore(RequestHeader): Remove unnecessary getters Signed-off-by: provokateurin --- .../Http/Attribute/RequestHeader.php | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/lib/public/AppFramework/Http/Attribute/RequestHeader.php b/lib/public/AppFramework/Http/Attribute/RequestHeader.php index c9327eec4c0..7f128b7a23f 100644 --- a/lib/public/AppFramework/Http/Attribute/RequestHeader.php +++ b/lib/public/AppFramework/Http/Attribute/RequestHeader.php @@ -29,22 +29,4 @@ class RequestHeader { protected string $description, ) { } - - /** - * @return string The name of the request header. - * - * @since 32.0.0 - */ - public function getName(): string { - return $this->name; - } - - /** - * @return string The description of the request header. - * - * @since 32.0.0 - */ - public function getDescription(): string { - return $this->description; - } }