Passed
Push — master ( d61b01...5e2bb2 )
by Thomas Mauro
02:08
created
src/ClientFactory/ReactFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     public function createClient(array $config = []): HttpClient
27 27
     {
28
-        if (! class_exists('Http\Adapter\React\Client')) {
28
+        if (!class_exists('Http\Adapter\React\Client')) {
29 29
             throw new LogicException('To use the React adapter you need to install the "php-http/react-adapter" package.');
30 30
         }
31 31
 
Please login to merge, or discard this patch.
src/ClientFactory/SocketFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
     public function createClient(array $config = []): HttpClient
24 24
     {
25
-        if (! class_exists('Http\Client\Socket\Client')) {
25
+        if (!class_exists('Http\Client\Socket\Client')) {
26 26
             throw new LogicException('To use the Socket client you need to install the "php-http/socket-client" package.');
27 27
         }
28 28
 
Please login to merge, or discard this patch.