We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef6598c commit 6dfb593Copy full SHA for 6dfb593
en/appendices/5-3-migration-guide.rst
@@ -74,6 +74,20 @@ Command
74
- ``cake server`` now supports a ``--frankenphp`` option that will start the
75
development server with `FrankenPHP <https://frankenphp.dev/>`__.
76
77
+Core
78
+----
79
+
80
+- Added ``Configure`` container attribute to support injecting ``Configure`` values into
81
+ constructor promoted properties when resolving a class. Example:
82
+ .. code-block:: php
83
84
+ class InjectedService
85
+ {
86
+ public function __construct(
87
+ #[Configure('MyService.apiKey')] protected string $apiKey,
88
+ ) { }
89
+ }
90
91
Cache
92
-----
93
0 commit comments