-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[HttpFoundation] Added "null" type on Request::create docblock #25878
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,7 +130,7 @@ class Request | |
public $headers; | ||
|
||
/** | ||
* @var string|resource | ||
* @var null|string|resource | ||
*/ | ||
protected $content; | ||
|
||
|
@@ -207,13 +207,13 @@ class Request | |
protected static $requestFactory; | ||
|
||
/** | ||
* @param array $query The GET parameters | ||
* @param array $request The POST parameters | ||
* @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) | ||
* @param array $cookies The COOKIE parameters | ||
* @param array $files The FILES parameters | ||
* @param array $server The SERVER parameters | ||
* @param string|resource $content The raw body data | ||
* @param array $query The GET parameters | ||
* @param array $request The POST parameters | ||
* @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) | ||
* @param array $cookies The COOKIE parameters | ||
* @param array $files The FILES parameters | ||
* @param array $server The SERVER parameters | ||
* @param null|string|resource $content The raw body data | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please put null last, it's the less useful type to tell about (personally I don't even get its value at all: it's already on the signature, but anyway...) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
*/ | ||
public function __construct(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array(), $content = null) | ||
{ | ||
|
@@ -225,13 +225,13 @@ public function __construct(array $query = array(), array $request = array(), ar | |
* | ||
* This method also re-initializes all properties. | ||
* | ||
* @param array $query The GET parameters | ||
* @param array $request The POST parameters | ||
* @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) | ||
* @param array $cookies The COOKIE parameters | ||
* @param array $files The FILES parameters | ||
* @param array $server The SERVER parameters | ||
* @param string|resource $content The raw body data | ||
* @param array $query The GET parameters | ||
* @param array $request The POST parameters | ||
* @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) | ||
* @param array $cookies The COOKIE parameters | ||
* @param array $files The FILES parameters | ||
* @param array $server The SERVER parameters | ||
* @param null|string|resource $content The raw body data | ||
*/ | ||
public function initialize(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array(), $content = null) | ||
{ | ||
|
@@ -294,13 +294,13 @@ public static function createFromGlobals() | |
* The information contained in the URI always take precedence | ||
* over the other information (server and parameters). | ||
* | ||
* @param string $uri The URI | ||
* @param string $method The HTTP method | ||
* @param array $parameters The query (GET) or request (POST) parameters | ||
* @param array $cookies The request cookies ($_COOKIE) | ||
* @param array $files The request files ($_FILES) | ||
* @param array $server The server parameters ($_SERVER) | ||
* @param string|resource $content The raw body data | ||
* @param string $uri The URI | ||
* @param string $method The HTTP method | ||
* @param array $parameters The query (GET) or request (POST) parameters | ||
* @param array $cookies The request cookies ($_COOKIE) | ||
* @param array $files The request files ($_FILES) | ||
* @param array $server The server parameters ($_SERVER) | ||
* @param null|string|resource $content The raw body data | ||
* | ||
* @return static | ||
*/ | ||
|
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actually, this could also be
false
, as we havefalse === $this->content
several timesThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
then add false?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
at 1st glance i was wondering why it's false-able when it's already null-able...
looks like way too many types are allowed