| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 146 | 19 | public static function fromOrientatedItem(OrientatedItem $orientatedItem, $x, $y, $z) |
|
| 147 | { |
||
| 148 | 19 | return new static( |
|
| 149 | 19 | $orientatedItem->getItem(), |
|
| 150 | 19 | $x, |
|
| 151 | 19 | $y, |
|
| 152 | 19 | $z, |
|
| 153 | 19 | $orientatedItem->getWidth(), |
|
| 154 | 19 | $orientatedItem->getLength(), |
|
| 155 | 19 | $orientatedItem->getDepth() |
|
| 156 | ); |
||
| 167 |