id = $id; $this->name = $name; $this->description = $description; $this->size = $size; $this->type = $type; $this->url = $url; } public function getId(): int { return $this->id; } public function getName(): string { return $this->name; } public function getDescription(): string { return $this->description; } public function getSize(): int { return $this->size; } public function getType(): string { return $this->type; } public function getUrl(): string { return $this->url; } }