From 6662c667de90593e101eb0dc4a22abeecbbf8f62 Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Sun, 26 Oct 2025 18:06:14 +0100 Subject: [PATCH] remove underscores from form properties --- config/rector/sets/cakephp60.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/rector/sets/cakephp60.php b/config/rector/sets/cakephp60.php index 89b012ff..ad4e972c 100644 --- a/config/rector/sets/cakephp60.php +++ b/config/rector/sets/cakephp60.php @@ -198,6 +198,11 @@ ], ], + 'Form' => [ + 'Cake\Form\Schema' => ['_fields', '_fieldDefaults'], + 'Cake\Form\Form' => ['_schemaClass', '_schema', '_errors', '_data'], + ], + 'ORM' => [ 'Cake\ORM\Association' => [ '_name', '_className', '_bindingKey', '_foreignKey', '_conditions',