Browse Source
chore(RequestHeader): Remove unnecessary getters
Signed-off-by: provokateurin <kate@provokateurin.de>
pull/53283/head
provokateurin
1 year ago
Failed to extract signature
1 changed files with
0 additions and
18 deletions
-
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; |
|
|
|
} |
|
|
|
} |