Test Failed
Push — master ( 97673a...da3d50 )
by Tilita
02:11
created
src/AMQPConnection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         'lazy'               => true,
29 29
 
30 30
         # More info about timeouts can be found on https://www.rabbitmq.com/networking.html
31
-        'read_write_timeout' => 3,   // default timeout for writing/reading (in seconds)
31
+        'read_write_timeout' => 3, // default timeout for writing/reading (in seconds)
32 32
         'connect_timeout'    => 3,
33 33
         'heartbeat'          => 0
34 34
     ];
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
             throw new \InvalidArgumentException(
65 65
                 sprintf(
66 66
                     "Cannot create connection %s, received unknown arguments: %s!",
67
-                    (string)$aliasName,
67
+                    (string) $aliasName,
68 68
                     implode(', ', $diff)
69 69
                 )
70 70
             );
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     {
87 87
         $this->aliasName = $aliasName;
88 88
         $this->connectionDetails = $connectionDetails;
89
-        if (isset($connectionDetails['lazy']) &&  $connectionDetails['lazy'] === false) {
89
+        if (isset($connectionDetails['lazy']) && $connectionDetails['lazy'] === false) {
90 90
             // dummy call
91 91
             $this->getConnection();
92 92
         }
Please login to merge, or discard this patch.