In the first code example in the [Php Array Cache Adapter](http://symfony.com/doc/current/components/cache/adapters/php_array_cache_adapter.html) documentation there is this line: ```php use Symfony\Component\Cache\Adapter\PhpFilesAdapter; ``` But this class is never used. Instead an object of class `FilesystemAdapter` (which is not imported) is instantiated ```php // a backup adapter, if you set values after warmup new FilesystemAdapter() ``` I guess that something is mixed up there. Can somebody look into it?