type = $type; $this->width = $width; $this->height = $height; $this->lenght = $lenght; $this->items = $items; } /** * @return int */ public function getType(): int { return $this->type; } /** * @return float */ public function getWidth(): float { return $this->width; } /** * @return float */ public function getHeight(): float { return $this->height; } /** * @return float */ public function getLenght(): float { return $this->lenght; } /** * @return array */ public function getItems(): array { return $this->items; } }