lastfm = $lastfm; $this->currentUser = $currentUser; } public function setSessionKey(LastfmSetSessionKeyRequest $request) { $this->lastfm->setUserSessionKey($this->currentUser, trim($request->key)); return response()->noContent(); } public function disconnect() { $this->lastfm->setUserSessionKey($this->currentUser, null); return response()->noContent(); } }