Skip to content

Commit

Permalink
PHPCS errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Sep 13, 2016
1 parent 1dae2c1 commit 46b06a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/Http/ServerRequestFactory.php
Expand Up @@ -65,6 +65,7 @@ public static function createUri(array $server = [])
$server += $_SERVER;
$server = static::normalizeServer($server);
$headers = static::marshalHeaders($server);

return static::marshalUriFromServer($server, $headers);
}

Expand Down Expand Up @@ -96,6 +97,7 @@ public static function marshalUriFromServer(array $server, array $headers)
// some method calls.
$uri->base = $base;
$uri->webroot = $webroot;

return $uri;
}

Expand Down Expand Up @@ -125,6 +127,7 @@ protected static function updatePath($base, $uri)
) {
$path = '/';
}

return $uri->withPath($path);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Network/Request.php
Expand Up @@ -381,8 +381,8 @@ protected function _processPost($data)
/**
* Process the GET parameters and move things into the object.
*
* @param string $queryString A query string from the URL if provided
* @param array $query The array to which the parsed keys/values are being added.
* @param string $queryString A query string from the URL if provided
* @return array An array containing the parsed querystring keys/values.
*/
protected function _processGet($query, $queryString = '')
Expand Down

0 comments on commit 46b06a0

Please sign in to comment.