Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
140 | 39 | public static function fromOrientatedItem(OrientatedItem $orientatedItem, int $x, int $y, int $z): PackedItem |
|
141 | { |
||
142 | 39 | return new static( |
|
143 | 39 | $orientatedItem->getItem(), |
|
144 | 39 | $x, |
|
145 | 39 | $y, |
|
146 | 39 | $z, |
|
147 | 39 | $orientatedItem->getWidth(), |
|
148 | 39 | $orientatedItem->getLength(), |
|
149 | 39 | $orientatedItem->getDepth() |
|
150 | ); |
||
151 | } |
||
152 | |||
162 |