user = $user; $this->song = $song; } public function handle(LastfmService $lastfmService): void { $lastfmService->updateNowPlaying( $this->song->artist->name, $this->song->title, $this->song->album->name === Album::UNKNOWN_NAME ? '' : $this->song->album->name, $this->song->length, $this->user->lastfm_session_key ); } }