chore(RequestHeader): Remove unnecessary getters

Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
provokateurin 2025-06-03 11:01:58 +02:00
parent f25d66008b
commit 18e04e1c5a
No known key found for this signature in database

View file

@ -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;
}
}