Skip to content

Commit

Permalink
Merge branch '6.4' into 7.0
Browse files Browse the repository at this point in the history
* 6.4:
  stop marking parameters implicitly as nullable
  include message id provided by the MTA when dispatching the SentMessageEvent
  • Loading branch information
xabbuh committed Mar 28, 2024
2 parents ba34629 + 57bc474 commit d5db659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Fixtures/TranslatableTextAlign.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ enum TranslatableTextAlign implements TranslatableInterface
case Center;
case Right;

public function trans(TranslatorInterface $translator, string $locale = null): string
public function trans(TranslatorInterface $translator, ?string $locale = null): string
{
return $translator->trans($this->name, locale: $locale);
}
Expand Down

0 comments on commit d5db659

Please sign in to comment.