Completed
Branch master (1519a2)
by Cody
02:45
created
Category
src/RoundRobin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      */
21 21
     public function __construct()
22 22
     {
23
-        $this->callback = function ($a, $b) {
23
+        $this->callback = function($a, $b) {
24 24
             if ($a === $b) {
25 25
                 return 0;
26 26
             }
Please login to merge, or discard this patch.
src/FirstAvailable.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
         $this->filterQueue = new CallbackFilterIterator(
24 24
             new SplQueue(),
25
-            function ($item) {
25
+            function($item) {
26 26
                 return (bool) $item;
27 27
             }
28 28
         );
Please login to merge, or discard this patch.