Passed
Push — master ( 7a1811...e7b498 )
by Michael
02:30
created
src/HttpClient/HttpClient.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,8 +88,7 @@
 block discarded – undo
88 88
 
89 89
         try {
90 90
             $response = $this->client->request($request);
91
-        }
92
-        catch (ResponseException $exception) {
91
+        } catch (ResponseException $exception) {
93 92
             if ($this->returnBadResponse) {
94 93
                 $response = $exception->getResponse();
95 94
                 return $this->handleResponse($response);
Please login to merge, or discard this patch.
src/HttpClient/Adapter/GuzzleAdapter.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,7 @@
 block discarded – undo
41 41
     {
42 42
         try {
43 43
             return $this->client->send($request);
44
-        }
45
-        catch (GuzzleRequestException $exception) {
44
+        } catch (GuzzleRequestException $exception) {
46 45
             throw $this->createException($exception);
47 46
         }
48 47
     }
Please login to merge, or discard this patch.