Completed
Push — master ( d6f0bd...41a21b )
by Ivannis Suárez
05:43
created
ArrayCollection/ArrayList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
             $criteria = new Comparator();
136 136
         }
137 137
 
138
-        uasort($this->elements, function ($a, $b) use ($criteria) {
138
+        uasort($this->elements, function($a, $b) use ($criteria) {
139 139
             return $criteria->compare($a, $b);
140 140
         });
141 141
     }
Please login to merge, or discard this patch.
ArrayCollection/ArrayHashMap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
             $criteria = new Comparator();
123 123
         }
124 124
 
125
-        uksort($this->elements, function ($a, $b) use ($criteria) {
125
+        uksort($this->elements, function($a, $b) use ($criteria) {
126 126
             return $criteria->compare($a, $b);
127 127
         });
128 128
     }
Please login to merge, or discard this patch.