Completed
Push — master ( 17ecec...f96e7f )
by Doug
51:32 queued 50:04
created
src/VolumePacker.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 
9 9
 use Psr\Log\LoggerAwareInterface;
10 10
 use Psr\Log\LoggerAwareTrait;
11
-use Psr\Log\LoggerInterface;
12 11
 use Psr\Log\NullLogger;
13 12
 
14 13
 /**
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
205 205
      * Used when we've packed a tall item, and have just put a shorter one next to it
206 206
      *
207 207
      * @param PackedItemList $packedItems
208
-     * @param ?PackedItem $prevItem
208
+     * @param null|PackedItem $prevItem
209 209
      * @param int $maxWidth
210 210
      * @param int $maxLength
211 211
      * @param int $maxDepth
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * @package BoxPacker
5 5
  * @author Doug Wright
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10 10
 use Psr\Log\LoggerAwareInterface;
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
         int $maxWidth,
193 193
         int $maxLength,
194 194
         int $maxDepth
195
-    ): ?OrientatedItem {
195
+    ) : ?OrientatedItem {
196 196
         $this->logger->debug(
197 197
             "evaluating item {$itemToPack->getDescription()} for fit",
198 198
             [
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
         int $x,
235 235
         int $y,
236 236
         int $z
237
-    ): void {
237
+    ) : void {
238 238
         while (count($this->items) > 0 && $this->checkNonDimensionalConstraints($this->items->top(), $packedItems)) {
239 239
             $stackedItem = $this->getOrientationForItem(
240 240
                 $this->items->top(),
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
             $items = iterator_to_array($packedItems, false);
329 329
             $packedItems = new PackedItemList();
330 330
             /** @var PackedItem $item */
331
-            foreach($items as $item) {
331
+            foreach ($items as $item) {
332 332
                 $packedItems->insert(
333 333
                     new PackedItem(
334 334
                         $item->getItem(),
Please login to merge, or discard this patch.
src/OrientatedItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @package BoxPacker
5 5
  * @author Doug Wright
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
src/OrientatedItemFactory.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * @package BoxPacker
5 5
  * @author Doug Wright
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10 10
 use Psr\Log\LoggerAwareInterface;
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         int $widthLeft,
44 44
         int $lengthLeft,
45 45
         int $depthLeft
46
-    ): ?OrientatedItem {
46
+    ) : ?OrientatedItem {
47 47
 
48 48
         $possibleOrientations = $this->getPossibleOrientations($item, $prevItem, $widthLeft, $lengthLeft, $depthLeft);
49 49
         $usableOrientations = $this->getUsableOrientations($possibleOrientations, $box, $item, $isLastItem);
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         int $widthLeft,
82 82
         int $lengthLeft,
83 83
         int $depthLeft
84
-    ): array {
84
+    ) : array {
85 85
 
86 86
         $orientations = [];
87 87
 
@@ -117,18 +117,18 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function getPossibleOrientationsInEmptyBox(Item $item, Box $box): array
119 119
     {
120
-        $cacheKey = $item->getWidth() .
121
-            '|' .
122
-            $item->getLength() .
123
-            '|' .
124
-            $item->getDepth() .
125
-            '|' .
126
-            ($item->getKeepFlat() ? '2D' : '3D') .
127
-            '|' .
128
-            $box->getInnerWidth() .
129
-            '|' .
130
-            $box->getInnerLength() .
131
-            '|' .
120
+        $cacheKey = $item->getWidth().
121
+            '|'.
122
+            $item->getLength().
123
+            '|'.
124
+            $item->getDepth().
125
+            '|'.
126
+            ($item->getKeepFlat() ? '2D' : '3D').
127
+            '|'.
128
+            $box->getInnerWidth().
129
+            '|'.
130
+            $box->getInnerLength().
131
+            '|'.
132 132
             $box->getInnerDepth();
133 133
 
134 134
         if (isset(static::$emptyBoxCache[$cacheKey])) {
Please login to merge, or discard this patch.
src/ConstrainedItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @package BoxPacker
5 5
  * @author Doug Wright
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
src/PackedBox.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @package BoxPacker
5 5
  * @author Doug Wright
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
src/Item.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @package BoxPacker
5 5
  * @author Doug Wright
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
src/ItemTooLargeException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @package BoxPacker
5 5
  * @author Doug Wright
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
src/PackedItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @package BoxPacker
5 5
  * @author Doug Wright
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.
src/Box.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
  * @package BoxPacker
5 5
  * @author Doug Wright
6 6
  */
7
-declare(strict_types=1);
7
+declare(strict_types = 1);
8 8
 namespace DVDoug\BoxPacker;
9 9
 
10 10
 /**
Please login to merge, or discard this patch.