Skip to content

[DependencyInjection] 6.0 [injection_types] remove mention of @required in service_container #17655

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
9 changes: 5 additions & 4 deletions service_container/injection_types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,16 @@ by cloning the original service, this approach allows you to make a service immu

// ...
use Symfony\Component\Mailer\MailerInterface;
use Symfony\Contracts\Service\Attribute\Required;

class NewsletterManager
{
private $mailer;

/**
* @required
* @return static
*/
#[Required]
public function withMailer(MailerInterface $mailer): self
{
$new = clone $this;
Expand Down Expand Up @@ -220,14 +221,14 @@ that accepts the dependency::
// src/Mail/NewsletterManager.php
namespace App\Mail;

use Symfony\Contracts\Service\Attribute\Required;

// ...
class NewsletterManager
{
private $mailer;

/**
* @required
*/
#[Required]
public function setMailer(MailerInterface $mailer): void
{
$this->mailer = $mailer;
Expand Down