|
|
|
@ -147,7 +147,7 @@ final class Request
|
|
|
|
|
'scheme' => self::getScheme(),
|
|
|
|
|
'user_agent' => self::getVar('HTTP_USER_AGENT'),
|
|
|
|
|
'type' => self::getVar('CONTENT_TYPE'),
|
|
|
|
|
'length' => self::getVar('CONTENT_LENGTH', 0),
|
|
|
|
|
'length' => (int) self::getVar('CONTENT_LENGTH', 0),
|
|
|
|
|
'query' => new Collection($_GET),
|
|
|
|
|
'data' => new Collection($_POST),
|
|
|
|
|
'cookies' => new Collection($_COOKIE),
|
|
|
|
|