Completed
Push — 2.x-dev ( 34f8fe...1cb5d7 )
by Doug
10:44
created
WeightRedistributor.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -65,17 +65,17 @@
 block discarded – undo
65 65
 
66 66
         do { //Keep moving items from most overweight box to most underweight box
67 67
             $tryRepack = false;
68
-            $this->logger->log(LogLevel::DEBUG, 'boxes under/over target: ' . count($underWeightBoxes) . '/' . count($overWeightBoxes));
68
+            $this->logger->log(LogLevel::DEBUG, 'boxes under/over target: '.count($underWeightBoxes).'/'.count($overWeightBoxes));
69 69
 
70 70
             foreach ($underWeightBoxes as $u => $underWeightBox) {
71
-                $this->logger->log(LogLevel::DEBUG, 'Underweight Box ' . $u);
71
+                $this->logger->log(LogLevel::DEBUG, 'Underweight Box '.$u);
72 72
                 foreach ($overWeightBoxes as $o => $overWeightBox) {
73
-                    $this->logger->log(LogLevel::DEBUG, 'Overweight Box ' . $o);
73
+                    $this->logger->log(LogLevel::DEBUG, 'Overweight Box '.$o);
74 74
                     $overWeightBoxItems = $overWeightBox->getItems()->asArray();
75 75
 
76 76
                     //For each item in the heavier box, try and move it to the lighter one
77 77
                     foreach ($overWeightBoxItems as $oi => $overWeightBoxItem) {
78
-                        $this->logger->log(LogLevel::DEBUG, 'Overweight Item ' . $oi);
78
+                        $this->logger->log(LogLevel::DEBUG, 'Overweight Item '.$oi);
79 79
                         if ($underWeightBox->getWeight() + $overWeightBoxItem->getWeight() > $targetWeight) {
80 80
                             $this->logger->log(LogLevel::DEBUG, 'Skipping item for hindering weight distribution');
81 81
                             continue; //skip if moving this item would hinder rather than help weight distribution
Please login to merge, or discard this patch.
VolumePacker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
         $orientationFits = [];
254 254
         /** @var OrientatedItem $orientation */
255 255
         foreach ($orientationsToUse as $o => $orientation) {
256
-            $orientationFit = min($widthLeft - $orientation->getWidth(), $lengthLeft  - $orientation->getLength());
256
+            $orientationFit = min($widthLeft - $orientation->getWidth(), $lengthLeft - $orientation->getLength());
257 257
             $orientationFits[$o] = $orientationFit;
258 258
         }
259 259
 
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
         }
301 301
 
302 302
         //remove any that simply don't fit
303
-        return array_filter($orientations, function (OrientatedItem $i) use ($widthLeft, $lengthLeft, $depthLeft) {
303
+        return array_filter($orientations, function(OrientatedItem $i) use ($widthLeft, $lengthLeft, $depthLeft) {
304 304
             return $i->getWidth() <= $widthLeft && $i->getLength() <= $lengthLeft && $i->getDepth() <= $depthLeft;
305 305
         });
306 306
 
Please login to merge, or discard this patch.
Packer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
 
149 149
             //Check iteration was productive
150 150
             if ($packedBoxesIteration->isEmpty()) {
151
-                throw new ItemTooLargeException('Item ' . $this->items->top()->getDescription() . ' is too large to fit into any box', $this->items->top());
151
+                throw new ItemTooLargeException('Item '.$this->items->top()->getDescription().' is too large to fit into any box', $this->items->top());
152 152
             }
153 153
 
154 154
             //Find best box of iteration, and remove packed items from unpacked list
Please login to merge, or discard this patch.