Skip to content

Commit 5e81db7

Browse files
committed
Update migration guide
Refs cakephp/cakephp#18854
1 parent 0ecd00c commit 5e81db7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

en/appendices/5-3-migration-guide.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Form
4242

4343
- ``Form::_execute()`` is deprecated. You should rename your ``_execute``
4444
methods to ``process()`` which accepts the same parameters and has the same
45-
return type..
45+
return type.
4646

4747
Http
4848
----
@@ -58,6 +58,13 @@ ORM
5858
``$table->getBehavior('Sluggable')->slugify()`` instead of ``$table->slugify()``.
5959
- ``EntityTrait::isEmpty()`` is deprecated. Use ``hasValue()`` instead.
6060

61+
Plugin
62+
------
63+
64+
- Loading of plugins without a plugin class is deprecated. For your existing plugins
65+
which don't have one, you can use the ``bin/cake bake plugin MyPlugin --class-only``
66+
command, which will create the file ``plugins/MyPlugin/src/MyPlugin.php``.
67+
6168
New Features
6269
============
6370

0 commit comments

Comments
 (0)