Completed
Push — master ( debbc0...855ad3 )
by Tilita
02:28
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
         'keep_alive'         => false
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
             throw new \InvalidArgumentException(
66 66
                 sprintf(
67 67
                     "Cannot create connection %s, received unknown arguments: %s!",
68
-                    (string)$aliasName,
68
+                    (string) $aliasName,
69 69
                     implode(', ', $diff)
70 70
                 )
71 71
             );
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     {
88 88
         $this->aliasName = $aliasName;
89 89
         $this->connectionDetails = $connectionDetails;
90
-        if (isset($connectionDetails['lazy']) &&  $connectionDetails['lazy'] === false) {
90
+        if (isset($connectionDetails['lazy']) && $connectionDetails['lazy'] === false) {
91 91
             // dummy call
92 92
             $this->getConnection();
93 93
         }
Please login to merge, or discard this patch.