lastFmSessionKey = $lastFmSessionKey; } public static function make(?string $lastFmSessionKey = null): self { return new self($lastFmSessionKey); } /** @return array */ public function toArray(): array { return ['lastfm_session_key' => $this->lastFmSessionKey]; } /** @return array */ public function jsonSerialize(): array { return $this->toArray(); } }