| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | 27 | public function __construct(int $dimensions) |
|
| 21 | { |
||
| 22 | 27 | if ($dimensions <= 0) { |
|
| 23 | 3 | throw new ValidationException('$dimensions should be bigger than 0'); |
|
| 24 | } |
||
| 25 | |||
| 26 | 27 | $this->lastId = 0; |
|
| 27 | 27 | $this->dimensions = $dimensions; |
|
| 28 | 27 | $this->items = []; |
|
| 29 | 27 | $this->ids = []; |
|
| 30 | 27 | } |
|
| 31 | |||
| 78 |