Completed
Push — master ( 4f9fcc...6c92c6 )
by Igor
06:44
created
src/Transport/CurlerRolling.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -290,9 +290,9 @@  discard block
 block discarded – undo
290 290
 
291 291
 
292 292
             if (is_object($done['handle'])) {
293
-                $key = spl_object_id( $done['handle'] );
293
+                $key = spl_object_id($done['handle']);
294 294
             } else {
295
-                $key = (string) $done['handle'] ;
295
+                $key = (string) $done['handle'];
296 296
             }
297 297
 
298 298
             $task_id = $this->handleMapTasks[$key];
@@ -374,9 +374,9 @@  discard block
 block discarded – undo
374 374
         curl_multi_add_handle($this->handlerMulti(), $h);
375 375
 
376 376
         if (is_object($h)) {
377
-            $key = spl_object_id( $h );
377
+            $key = spl_object_id($h);
378 378
         } else {
379
-            $key = (string) $h ;
379
+            $key = (string) $h;
380 380
         }
381 381
 
382 382
         $this->handleMapTasks[$key] = $task_id;
Please login to merge, or discard this patch.