From 5e81db7599668896cb45be42cbfb56ffda993912 Mon Sep 17 00:00:00 2001 From: ADmad Date: Mon, 25 Aug 2025 13:16:16 +0530 Subject: [PATCH] Update migration guide Refs cakephp/cakephp#18854 --- en/appendices/5-3-migration-guide.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/en/appendices/5-3-migration-guide.rst b/en/appendices/5-3-migration-guide.rst index f289fc507f..af4c2f1e0e 100644 --- a/en/appendices/5-3-migration-guide.rst +++ b/en/appendices/5-3-migration-guide.rst @@ -42,7 +42,7 @@ Form - ``Form::_execute()`` is deprecated. You should rename your ``_execute`` methods to ``process()`` which accepts the same parameters and has the same - return type.. + return type. Http ---- @@ -58,6 +58,13 @@ ORM ``$table->getBehavior('Sluggable')->slugify()`` instead of ``$table->slugify()``. - ``EntityTrait::isEmpty()`` is deprecated. Use ``hasValue()`` instead. +Plugin +------ + +- Loading of plugins without a plugin class is deprecated. For your existing plugins + which don't have one, you can use the ``bin/cake bake plugin MyPlugin --class-only`` + command, which will create the file ``plugins/MyPlugin/src/MyPlugin.php``. + New Features ============