Skip to content

Commit bb487a1

Browse files
committed
minor symfony#9129 Fixed the import in the PHP Array Cache adapter article (javiereguiluz)
This PR was merged into the 3.3 branch. Discussion ---------- Fixed the import in the PHP Array Cache adapter article This fixes symfony#8672. In 3.3 and 3.4 is wrong: http://symfony.com/doc/3.3/components/cache/adapters/php_array_cache_adapter.html In current/master is correct: http://symfony.com/doc/current/components/cache/adapters/php_array_cache_adapter.html Commits ------- 5ccb60e Fixed the import in the PHP Array Cache adapter article
2 parents 9059029 + 5ccb60e commit bb487a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/cache/adapters/php_array_cache_adapter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This adapter is a highly performant way to cache static data (e.g. application c
99
that is optimized and preloaded into OPcache memory storage::
1010

1111
use Symfony\Component\Cache\Adapter\PhpArrayAdapter;
12-
use Symfony\Component\Cache\Adapter\PhpFilesAdapter;
12+
use Symfony\Component\Cache\Adapter\FilesystemAdapter;
1313

1414
// somehow, decide it's time to warm up the cache!
1515
if ($needsWarmup) {

0 commit comments

Comments
 (0)