From 85f948173fdbc9071ce6d3335254bf5cdb7c6617 Mon Sep 17 00:00:00 2001 From: Spencer Gabhart Date: Wed, 14 May 2025 11:27:16 -0400 Subject: [PATCH] Correct PHP syntax in token example --- README.md | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 6352b7f..3e56fd1 100644 --- a/README.md +++ b/README.md @@ -54,20 +54,25 @@ class ClientCredentialService #### Creating A Token ```PHP -String $clientId = "YOUR_CLIENT_ID"; -String $clientSecret = "YOUR_CLIENT_SECRET"; -$headers = array(); +getAccessToken($clientId, $clientSecret, $headers, $customClaims); ``` ***