Skip to content

Commit

Permalink
Fix PHPCS errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Sep 4, 2016
1 parent f795822 commit 9881530
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Network/Request.php
Expand Up @@ -1007,6 +1007,7 @@ public function withMethod($method)
));
}
$new->_environment['REQUEST_METHOD'] = $method;

return $new;
}

Expand Down Expand Up @@ -1043,6 +1044,7 @@ public function withQueryParams(array $query)
{
$new = clone $this;
$new->query = $query;

return $new;
}

Expand Down Expand Up @@ -1400,6 +1402,7 @@ public function withCookieParams(array $cookies)
{
$new = clone $this;
$new->cookies = $cookies;

return $new;
}

Expand Down Expand Up @@ -1430,6 +1433,7 @@ public function withParsedBody($data)
{
$new = clone $this;
$new->data = $data;

return $new;
}

Expand Down

0 comments on commit 9881530

Please sign in to comment.