@@ -102,18 +102,18 @@ |
||
| 102 | 102 | */ |
| 103 | 103 | public function getPossibleOrientationsInEmptyBox(Item $item, Box $box) |
| 104 | 104 | { |
| 105 | - $cacheKey = $item->getWidth() . |
|
| 106 | - '|' . |
|
| 107 | - $item->getLength() . |
|
| 108 | - '|' . |
|
| 109 | - $item->getDepth() . |
|
| 110 | - '|' . |
|
| 111 | - ($item->getKeepFlat() ? '2D' : '3D') . |
|
| 112 | - '|' . |
|
| 113 | - $box->getInnerWidth() . |
|
| 114 | - '|' . |
|
| 115 | - $box->getInnerLength() . |
|
| 116 | - '|' . |
|
| 105 | + $cacheKey = $item->getWidth(). |
|
| 106 | + '|'. |
|
| 107 | + $item->getLength(). |
|
| 108 | + '|'. |
|
| 109 | + $item->getDepth(). |
|
| 110 | + '|'. |
|
| 111 | + ($item->getKeepFlat() ? '2D' : '3D'). |
|
| 112 | + '|'. |
|
| 113 | + $box->getInnerWidth(). |
|
| 114 | + '|'. |
|
| 115 | + $box->getInnerLength(). |
|
| 116 | + '|'. |
|
| 117 | 117 | $box->getInnerDepth(); |
| 118 | 118 | |
| 119 | 119 | if (isset(static::$emptyBoxCache[$cacheKey])) { |