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 8872c3b + ca1d78e commit a2df2c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Fixtures/ConstraintWithRequiredArgument.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ final class ConstraintWithRequiredArgument extends Constraint
public string $requiredArg;

#[HasNamedArguments]
public function __construct(string $requiredArg, array $groups = null, mixed $payload = null)
public function __construct(string $requiredArg, ?array $groups = null, mixed $payload = null)
{
parent::__construct([], $groups, $payload);

Expand Down

0 comments on commit a2df2c6

Please sign in to comment.