From 6723929f3fc3c9a9268c052d5316a12b9f7184b4 Mon Sep 17 00:00:00 2001 From: Jesse Evers Date: Mon, 24 Jun 2024 14:35:15 -0400 Subject: [PATCH] Update cache parameter documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b86e6ca72..55d9f787f 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ The `SellingPartnerApi::seller()` and `SellingPartnerApi::vendor()` builder meth * `dataElements (array)`: Optional. An array of data elements to pass to restricted operations. See the [Restricted operations](#restricted-operations) section for more details. * `delegatee (string)`: Optional. The application ID of a delegatee application to generate RDTs on behalf of. * `authenticationClient (GuzzleHttp\Client)`: Guzzle client instance that will be used to generate the access token from the refresh token. If not provided, the default Saloon Guzzle client will be used. -* `cache (SellingPartnerApi\Contracts\TokenCache)`: A cache interface instance that will be used to cache access tokens. If not provided, a basic in-memory cache will be used. +* `cache (SellingPartnerApi\Contracts\TokenCache)`: A cache interface instance that will be used to cache access tokens. If not provided, a basic in-memory cache will be used. If set to `null`, caching will be disabled. ### Debugging