Fix PHP 8.1: Assign string to int propety

TypeError: Cannot assign string to property flight\net\Request::$length of type int
pull/456/head
Jamal 3 years ago
parent 85b5b97cf9
commit d2a92aa808

@ -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),

Loading…
Cancel
Save