Skip to content
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.

Commit

Permalink
Fix CS by PHP CS Fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus authored and fabpot committed Nov 28, 2014
1 parent 1569430 commit d825c15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Goutte/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ protected function doRequest($request)
}

$body = null;
if (!in_array($request->getMethod(), array('GET','HEAD'))) {
if (!in_array($request->getMethod(), array('GET', 'HEAD'))) {
if (null !== $request->getContent()) {
$body = $request->getContent();
} else {
Expand Down

0 comments on commit d825c15

Please sign in to comment.