name = $name; $this->description = $description; } public function jsonSerialize() { return [ 'name' => $this->name, 'description' => $this->description, ]; } }