Skip to content

[DependencyInjection] 6.0 [autowiring] remove mention to @required #17654

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions service_container/autowiring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -578,11 +578,8 @@ Autowiring will automatically call *any* method with the ``#[Required]`` attribu
above it, autowiring each argument. If you need to manually wire some of the arguments
to a method, you can always explicitly :doc:`configure the method call </service_container/calls>`.

If your PHP version doesn't support attributes (they were introduced in PHP 8),
you can use the ``@required`` annotation instead.

Despite property injection having some :ref:`drawbacks <property-injection>`,
autowiring with ``#[Required]`` or ``@required`` can also be applied to public
autowiring with ``#[Required]`` can also be applied to public
typed properties:

.. configuration-block::
Expand Down