id = $id; $this->name = $name; $this->url = $url; $this->parent = $parent; } public function getId() { return $this->id; } public function getName() { return $this->name; } public function getParent() { return $this->parent; } public function getUrl() { return $this->url; } }