From d825c150c7557c512e376f8c25f24f592ddc522c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20Rumi=C5=84ski?= Date: Sun, 16 Nov 2014 19:48:14 +0100 Subject: [PATCH] Fix CS by PHP CS Fixer --- Goutte/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Goutte/Client.php b/Goutte/Client.php index 8a25f19..80240cc 100644 --- a/Goutte/Client.php +++ b/Goutte/Client.php @@ -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 {