Skip to content

Commit c1ffe24

Browse files
Merge branch '6.4' into 7.0
* 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
2 parents 43371a9 + 5017e0a commit c1ffe24

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

RawMessage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919
class RawMessage
2020
{
21-
private iterable|string|null $message = null;
21+
private iterable|string $message;
2222
private bool $isGeneratorClosed;
2323

2424
public function __construct(iterable|string $message)

Tests/EmailTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -564,8 +564,7 @@ public function testSymfonySerialize()
564564
}
565565
]
566566
},
567-
"body": null,
568-
"message": null
567+
"body": null
569568
}
570569
EOF;
571570

Tests/MessageTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,7 @@ public function testSymfonySerialize()
254254
]
255255
},
256256
"class": "Symfony\\\\Component\\\\Mime\\\\Part\\\\Multipart\\\\MixedPart"
257-
},
258-
"message": null
257+
}
259258
}
260259
EOF;
261260

0 commit comments

Comments
 (0)