Skip to content

Commit b64a31e

Browse files
authored
Merge pull request #8067 from cakephp/5.3-plugin-class
Update migration guide
2 parents da40248 + 5e81db7 commit b64a31e

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
@@ -46,7 +46,7 @@ Form
4646

4747
- ``Form::_execute()`` is deprecated. You should rename your ``_execute``
4848
methods to ``process()`` which accepts the same parameters and has the same
49-
return type..
49+
return type.
5050

5151
Http
5252
----
@@ -62,6 +62,13 @@ ORM
6262
``$table->getBehavior('Sluggable')->slugify()`` instead of ``$table->slugify()``.
6363
- ``EntityTrait::isEmpty()`` is deprecated. Use ``hasValue()`` instead.
6464

65+
Plugin
66+
------
67+
68+
- Loading of plugins without a plugin class is deprecated. For your existing plugins
69+
which don't have one, you can use the ``bin/cake bake plugin MyPlugin --class-only``
70+
command, which will create the file ``plugins/MyPlugin/src/MyPlugin.php``.
71+
6572
New Features
6673
============
6774

0 commit comments

Comments
 (0)