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