We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ecd00c commit 5e81db7Copy full SHA for 5e81db7
en/appendices/5-3-migration-guide.rst
@@ -42,7 +42,7 @@ Form
42
43
- ``Form::_execute()`` is deprecated. You should rename your ``_execute``
44
methods to ``process()`` which accepts the same parameters and has the same
45
- return type..
+ return type.
46
47
Http
48
----
@@ -58,6 +58,13 @@ ORM
58
``$table->getBehavior('Sluggable')->slugify()`` instead of ``$table->slugify()``.
59
- ``EntityTrait::isEmpty()`` is deprecated. Use ``hasValue()`` instead.
60
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
68
New Features
69
============
70
0 commit comments