From 5ccb60e68138b578633c775a70ff9e8ea08ca8a5 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 25 Jan 2018 10:16:42 +0100 Subject: [PATCH] Fixed the import in the PHP Array Cache adapter article --- components/cache/adapters/php_array_cache_adapter.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cache/adapters/php_array_cache_adapter.rst b/components/cache/adapters/php_array_cache_adapter.rst index 2a45c3cf759..c2c722eae3f 100644 --- a/components/cache/adapters/php_array_cache_adapter.rst +++ b/components/cache/adapters/php_array_cache_adapter.rst @@ -9,7 +9,7 @@ This adapter is a highly performant way to cache static data (e.g. application c that is optimized and preloaded into OPcache memory storage:: use Symfony\Component\Cache\Adapter\PhpArrayAdapter; - use Symfony\Component\Cache\Adapter\PhpFilesAdapter; + use Symfony\Component\Cache\Adapter\FilesystemAdapter; // somehow, decide it's time to warm up the cache! if ($needsWarmup) {