Skip to content

Commit

Permalink
Amends to docblocks
Browse files Browse the repository at this point in the history
Made the suggested edits to the docblocks for the deprecated query() method and property.
  • Loading branch information
davidyell committed Feb 20, 2017
1 parent 2a33961 commit 66123bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Http/ServerRequest.php
Expand Up @@ -65,7 +65,7 @@ class ServerRequest implements ArrayAccess, ServerRequestInterface
* Array of querystring arguments
*
* @var array
* @deprecated 3.4.0 This public property will be removed in 4.0.0. Use getQueryParams() instead.
* @deprecated 3.4.0 This public property will be removed in 4.0.0. Use getQuery() or getQueryParams() instead.
*/
public $query = [];

Expand Down Expand Up @@ -1396,7 +1396,7 @@ protected function _parseAcceptWithQualifier($header)
*
* @param string|null $name Query string variable name or null to read all.
* @return string|array|null The value being read
* @deprecated 3.4.0 Use getQueryParams() and withQueryParams() instead.
* @deprecated 3.4.0 Use getQuery() or getQueryParams() and withQueryParams() instead.
*/
public function query($name = null)
{
Expand Down

0 comments on commit 66123bf

Please sign in to comment.