mirror of
https://github.com/nextcloud/server.git
synced 2026-06-16 20:19:48 -04:00
code style: ommited space, reverted [code review]
This commit is contained in:
parent
21625f0d66
commit
8442ed014d
1 changed files with 1 additions and 1 deletions
|
|
@ -294,7 +294,7 @@ class Request implements \ArrayAccess, \Countable, IRequest {
|
|||
* @return string
|
||||
*/
|
||||
public function getHeader(string $name): string {
|
||||
$name = strtoupper(str_replace('-', '_',$name));
|
||||
$name = strtoupper(str_replace('-', '_', $name));
|
||||
if (isset($this->server['HTTP_' . $name])) {
|
||||
return $this->server['HTTP_' . $name];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue