From f6eba47b85fba9f2c81624101726b9d10a9f183b Mon Sep 17 00:00:00 2001 From: Chris Mcintosh Date: Wed, 18 Dec 2024 15:48:31 -0500 Subject: [PATCH] Update oauth2-authentication.md with missing semicolon in defaultOauthConfig method --- digging-deeper/oauth2-authentication/oauth2-authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/digging-deeper/oauth2-authentication/oauth2-authentication.md b/digging-deeper/oauth2-authentication/oauth2-authentication.md index 26e3cad..0b714ce 100644 --- a/digging-deeper/oauth2-authentication/oauth2-authentication.md +++ b/digging-deeper/oauth2-authentication/oauth2-authentication.md @@ -85,7 +85,7 @@ class SpotifyConnector extends Connector ->setUserEndpoint('/me') ->setRequestModifier(function (Request $request) { // Optional: Modify the requests being sent. - }) + }); } } ```