*/ protected function defaultBody(): array { $body = [ 'method' => 'track.scrobble', 'artist' => $this->song->artist->name, 'track' => $this->song->title, 'timestamp' => $this->timestamp, 'sk' => $this->user->preferences->lastFmSessionKey, ]; if ($this->song->album->name !== Album::UNKNOWN_NAME) { $body['album'] = $this->song->album->name; } return $body; } }