From 2167798624871d2b474b1aaaf57a22c35b73d55a Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Sat, 17 Jan 2026 18:39:42 +0100 Subject: [PATCH] cleanup underscore properties in Log package --- config/rector/sets/cakephp60.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/rector/sets/cakephp60.php b/config/rector/sets/cakephp60.php index 0c82410..56d2a56 100644 --- a/config/rector/sets/cakephp60.php +++ b/config/rector/sets/cakephp60.php @@ -249,6 +249,13 @@ 'Cake\I18n\TranslatorRegistry' => ['_loaders', '_defaultFormatter', '_useFallback', '_cacher'], ], + 'Log' => [ + 'Cake\Log\Log' => ['_dirtyConfig', '_levels', '_levelMap'], + 'Cake\Log\Engine\ConsoleLog' => ['_output'], + 'Cake\Log\Engine\SyslogLog' => ['_open'], + 'Cake\Log\Engine\FileLog' => ['_path', '_file', '_size'], + ], + 'ORM' => [ 'Cake\ORM\Association' => [ '_name', '_className', '_bindingKey', '_foreignKey', '_conditions',