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 ============