cakephp / app

CakePHP application template
366 stars 390 forks source link

Incorrect cache engine name in home page #890

Closed nishimura-d closed 2 years ago

nishimura-d commented 2 years ago

This is a (multiple allowed):

What you did

Open the home page.

What happened

In Filesystem section:

The Cake\Cache\Engine\FileEngineEngine is being used for core caching. To change the config edit config/app.php

What you expected to happen

The Cake\Cache\Engine\FileEngine is being used for core caching. To change the config edit config/app.php

Information

This displays className of _cake_core_ cache config, followed by "Engine". Previously className was short name like File, but changed to FQCN at 4f7588486e34df7da712449f137fb19dd4000622. I think it's good to display FQCN even when configured with short name, though it requires instantiating the engine.