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