Skip to content

Commit b7d6963

Browse files
minor symfony#25875 [HttpFoundation] Added "resource" type on Request::create docblock (Jack Wright)
This PR was merged into the 2.7 branch. Discussion ---------- [HttpFoundation] Added "resource" type on Request::create docblock | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Replaces symfony#24902 Commits ------- d1a96ca [HttpFoundation] Added "resource" type on Request::create docblock
2 parents 8ff4136 + d1a96ca commit b7d6963

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Symfony/Component/HttpFoundation/Request.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -294,13 +294,13 @@ public static function createFromGlobals()
294294
* The information contained in the URI always take precedence
295295
* over the other information (server and parameters).
296296
*
297-
* @param string $uri The URI
298-
* @param string $method The HTTP method
299-
* @param array $parameters The query (GET) or request (POST) parameters
300-
* @param array $cookies The request cookies ($_COOKIE)
301-
* @param array $files The request files ($_FILES)
302-
* @param array $server The server parameters ($_SERVER)
303-
* @param string $content The raw body data
297+
* @param string $uri The URI
298+
* @param string $method The HTTP method
299+
* @param array $parameters The query (GET) or request (POST) parameters
300+
* @param array $cookies The request cookies ($_COOKIE)
301+
* @param array $files The request files ($_FILES)
302+
* @param array $server The server parameters ($_SERVER)
303+
* @param string|resource $content The raw body data
304304
*
305305
* @return static
306306
*/

0 commit comments

Comments
 (0)