url = $url; $this->name = $name; $this->description = $description; } /** * @return string */ public function getUrl() { return $this->url; } /** * @return string */ public function getName() { return $this->name; } /** * @return string */ public function getDescription() { return $this->description; } /** * @inheritDoc */ public function jsonSerialize() { return [ 'url' => $this->url, 'name' => $this->name, 'description' => $this->description ]; } }