currentUser = $currentUser; } public function store(ScrobbleStoreRequest $request, Song $song) { if (!$song->artist->is_unknown && $this->currentUser->connectedToLastfm()) { ScrobbleJob::dispatch($this->currentUser, $song, $request->timestamp); } return response()->noContent(); } }