Completed
Push — master ( 183a1b...57d999 )
by Ivannis Suárez
02:07
created
Common/Collections/PersistentArrayHashMap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
             $criteria = new Comparator();
61 61
         }
62 62
 
63
-        uksort($elements, function ($a, $b) use ($criteria) {
63
+        uksort($elements, function($a, $b) use ($criteria) {
64 64
             return $criteria->compare($a, $b);
65 65
         });
66 66
 
Please login to merge, or discard this patch.
Common/Collections/PersistentArraySet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
             $criteria = new Comparator();
69 69
         }
70 70
 
71
-        usort($elements, function ($a, $b) use ($criteria) {
71
+        usort($elements, function($a, $b) use ($criteria) {
72 72
             return $criteria->compare($a, $b);
73 73
         });
74 74
 
Please login to merge, or discard this patch.
Common/Collections/PersistentArrayList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
             $criteria = new Comparator();
69 69
         }
70 70
 
71
-        usort($elements, function ($a, $b) use ($criteria) {
71
+        usort($elements, function($a, $b) use ($criteria) {
72 72
             return $criteria->compare($a, $b);
73 73
         });
74 74
 
Please login to merge, or discard this patch.