Completed
Push — new_data_structures_2 ( 960830 )
by Doug
05:29
created
BoxList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     {
55 55
         uasort(
56 56
             $this->list,
57
-            function (Box $boxA, Box $boxB) {
57
+            function(Box $boxA, Box $boxB) {
58 58
                 if ($boxB->getInnerVolume() > $boxA->getInnerVolume()) {
59 59
                     return -1;
60 60
                 } elseif ($boxB->getInnerVolume() < $boxA->getInnerVolume()) {
Please login to merge, or discard this patch.