how do I set the audience in PHP
To set the audience in PHP using the Kinde SDK, you need to pass the audience parameter when creating a new instance of the `KindeClientSDK`. Here is an example of how to do this: ``` public function __construct() { $this->kindeClient = new KindeClientSDK( "KINDE_HOST", "KINDE_REDIRECT_URL", "KINDE_CLIENT_ID", "KINDE_CLIENT_SECRET", "KINDE_GRANT_TYPE", "KINDE_POST_LOGOUT_REDIRECT_URL", "YOUR_SCOPES", [ "audience" => "" ] ); } ``` In this example, replace `""` with the actual audience for your API. For more details, you can refer to the .