Passed
Push — master ( e7b498...658590 )
by Michael
02:23
created
src/HttpClient/Decorator/SymfonyEventDispatcherDecorator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,13 +86,13 @@
 block discarded – undo
86 86
             $exceptionEvent = new ExceptionEvent($request, $exception);
87 87
             $this->dispatcher->dispatch($this->exceptionEvent, $exceptionEvent);
88 88
 
89
-            if (! $exceptionEvent->hasResponse()) {
89
+            if (!$exceptionEvent->hasResponse()) {
90 90
                 throw $this->handleException($exception, $request);
91 91
             }
92 92
 
93 93
             $response = $exceptionEvent->getResponse();
94 94
 
95
-            if (! $exceptionEvent->isResponseEventEnabled()) {
95
+            if (!$exceptionEvent->isResponseEventEnabled()) {
96 96
                 return $response;
97 97
             }
98 98
         }
Please login to merge, or discard this patch.