From 3f705f6752107769553b0fbec30ec4eece5a2acc Mon Sep 17 00:00:00 2001 From: Tom H Anderson Date: Sat, 26 Oct 2024 02:25:32 -0600 Subject: [PATCH] use statement for storage_path --- src/Configuration/Cache/PhpFileCacheProvider.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Configuration/Cache/PhpFileCacheProvider.php b/src/Configuration/Cache/PhpFileCacheProvider.php index 3add13b4..86418496 100644 --- a/src/Configuration/Cache/PhpFileCacheProvider.php +++ b/src/Configuration/Cache/PhpFileCacheProvider.php @@ -9,6 +9,8 @@ use Psr\Cache\CacheItemPoolInterface; use Symfony\Component\Cache\Adapter\PhpFilesAdapter; +use function storage_path; + class PhpFileCacheProvider implements Driver { public function __construct(protected Repository $config)