diff --git a/config/rector/sets/cakephp60.php b/config/rector/sets/cakephp60.php index c301c192..c19048c1 100644 --- a/config/rector/sets/cakephp60.php +++ b/config/rector/sets/cakephp60.php @@ -32,6 +32,17 @@ // ===== Remove underscores from property names ===== $map = [ + 'Cache' => [ + 'Cake\Cache\Cache\ApcuEngine' => ['_compiledGroupNames'], + 'Cake\Cache\Cache\FileEngine' => ['_File', '_init'], + 'Cake\Cache\Cache\MemcachedEngine' => ['_Memcached', '_serializers', '_compiledGroupNames'], + 'Cake\Cache\Cache\RedisEngine' => ['_Redis'], + 'Cake\Cache\Cache' => ['_enabled', '_groups'], + 'Cake\Cache\CacheEngine' => ['_groupPrefix'], + ], + 'Core' => [ + 'Cake\Core\StaticConfigTrait' => ['_config', '_dsnClassMap', '_registry'], + ], 'Utility' => [ 'Cake\Utility\Inflector' => [ '_plural', '_singular', '_irregular', '_uninflected', '_cache', '_initialState',