Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
…S fix (space between `if` and `(`)
  • Loading branch information
Ocramius committed Jan 19, 2015
1 parent 74e2a2d commit d3a447d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static function fromString($string)
$request->setUri($matches['uri']);

$parsedUri = parse_url($matches['uri']);
if(array_key_exists('query', $parsedUri)) {
if (array_key_exists('query', $parsedUri)) {
$parsedQuery = array();
parse_str($parsedUri['query'], $parsedQuery);
$request->setQuery(new Parameters($parsedQuery));
Expand Down

0 comments on commit d3a447d

Please sign in to comment.