name = $name; $this->url = $url; $this->type = $type; } public function getName(): string { return $this->name; } public function getUrl(): string { return $this->url; } public function getType(): string { return $this->type; } }