Commit e46d9c5b authored by Kelly Banman's avatar Kelly Banman

Fix capitalization regression in Request::server()

Signed-off-by: 's avatarKelly Banman <kelly.banman@gmail.com>
parent d29c5bfd
...@@ -81,7 +81,7 @@ class Request { ...@@ -81,7 +81,7 @@ class Request {
*/ */
public static function server($key = null, $default = null) public static function server($key = null, $default = null)
{ {
return array_get(static::foundation()->server->all(), $key, $default); return array_get(static::foundation()->server->all(), strtoupper($key), $default);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment