Passed
Push — master ( a58ab5...d43eeb )
by Igor
02:11
created
src/Transport/CurlerRolling.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -144,22 +144,22 @@
 block discarded – undo
144 144
     public function execLoopWait()
145 145
     {
146 146
         $c = 0;
147
-        $timeStart=time();
148
-        $uSleep=1000; // Timer: check response from server, and add new Task/Que to loop
149
-        $PendingAllConnections=$this->countPending();
147
+        $timeStart = time();
148
+        $uSleep = 1000; // Timer: check response from server, and add new Task/Que to loop
149
+        $PendingAllConnections = $this->countPending();
150 150
 
151 151
         // Max loop check
152 152
 
153
-        $count=0;
153
+        $count = 0;
154 154
         // add all tasks
155 155
         do {
156 156
             $this->exec();
157
-            $timeWork=time()-$timeStart;
157
+            $timeWork = time() - $timeStart;
158 158
             //
159 159
             $ActiveNowConnections = $this->countActive();
160 160
             $PendingNowConnections = $this->countPending();
161 161
 
162
-            $count=$ActiveNowConnections+$PendingNowConnections;
162
+            $count = $ActiveNowConnections + $PendingNowConnections;
163 163
             $c++;
164 164
 
165 165
             if ($c > 20000) {
Please login to merge, or discard this patch.