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:
  Fix RequestPayloadValueResolver handling error with no ExpectedTypes
  [Mime] Fix serializing uninitialized RawMessage::$message to null
  [Notifer][Smsapi] Set messageId of SentMessage
  [DX] Use Symfony "dark-mode"-responsive logo in README
  support lazy evaluated exception messages with Xdebug 3
  Provide more precise phpdoc for FileLocatorInterface::locate
  [DependencyInjection] #[Autowire] attribute should have precedence over bindings
  • Loading branch information
nicolas-grekas committed Jan 30, 2024
2 parents 43371a9 + 5017e0a commit c1ffe24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion RawMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
class RawMessage
{
private iterable|string|null $message = null;
private iterable|string $message;
private bool $isGeneratorClosed;

public function __construct(iterable|string $message)
Expand Down
3 changes: 1 addition & 2 deletions Tests/EmailTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,7 @@ public function testSymfonySerialize()
}
]
},
"body": null,
"message": null
"body": null
}
EOF;

Expand Down
3 changes: 1 addition & 2 deletions Tests/MessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,7 @@ public function testSymfonySerialize()
]
},
"class": "Symfony\\\\Component\\\\Mime\\\\Part\\\\Multipart\\\\MixedPart"
},
"message": null
}
}
EOF;

Expand Down

0 comments on commit c1ffe24

Please sign in to comment.