From 947e3ab9bbb420498de23d912a972fb9cead8034 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Tue, 16 Jul 2024 08:16:05 -0700 Subject: [PATCH] docs: fix import typo, add comment --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7db408046..63bcfeaa2 100644 --- a/README.md +++ b/README.md @@ -304,7 +304,9 @@ $middleware = ApplicationDefaultCredentials::getCredentials($scope, cache: $memo You can use a third party that follows the `PSR-6` interface of your choice. ```php -use Symphony\Component\Cache\Adapter\FileststenAdapter; +// run "composer require symfony/cache" +use Google\Auth\ApplicationDefaultCredentials; +use Symfony\Component\Cache\Adapter\FilesystemAdapter; // Create the cache instance $filesystemCache = new FilesystemAdapter();