Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
64 | 39 | public function __construct(Item $item, int $x, int $y, int $z, int $width, int $length, int $depth) |
|
65 | { |
||
66 | 39 | $this->item = $item; |
|
67 | 39 | $this->x = $x; |
|
68 | 39 | $this->y = $y; |
|
69 | 39 | $this->z = $z; |
|
70 | 39 | $this->width = $width; |
|
71 | 39 | $this->length = $length; |
|
72 | 39 | $this->depth = $depth; |
|
73 | } |
||
74 | |||
162 |