-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 6.3: fix #51235 - fix the order of merging of serializationContext and self::CONTEXT_DENORMALIZE [HttpClient] Fix Static Code Analyzer issue with JsonMockResponse [Messenger] Fix exiting `FailedMessagesRetryCommand` [Serializer] Fix reindex normalizedData array in AbstractObjectNormalizer::denormalize() [Validator] Fix `File::$extensions`’ PHPDoc [Mime] Fix email (de)serialization issues [Serializer] Fix parsing XML root node attributes fix parsing of payload timestamp to DateTimeImmutable Fix routing to multiple fallback transports Fix missing stamps in delayed message handling [DoctrineBridge] Ignore invalid stores in `LockStoreSchemaListener` raised by `StoreFactory`
- Loading branch information
Showing
10 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
$wh->setRecipientEmail('[email protected]'); | ||
$wh->setTags(['my_tag_1', 'my_tag_2']); | ||
$wh->setMetadata(['my_var_1' => 'Mailgun Variable #1', 'my-var-2' => 'awesome']); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', 1521243339.873676)); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', '1521243339.873676')); | ||
|
||
return $wh; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
$wh->setRecipientEmail('[email protected]'); | ||
$wh->setTags(['my_tag_1', 'my_tag_2']); | ||
$wh->setMetadata(['my_var_1' => 'Mailgun Variable #1', 'my-var-2' => 'awesome']); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', 1521472262.908181)); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', '1521472262.000002')); | ||
$wh->setReason('OK'); | ||
|
||
return $wh; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
$wh->setRecipientEmail('[email protected]'); | ||
$wh->setTags(['my_tag_1', 'my_tag_2']); | ||
$wh->setMetadata(['my_var_1' => 'Mailgun Variable #1', 'my-var-2' => 'awesome']); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', 1521243339.873676)); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', '1521243339.873676')); | ||
|
||
return $wh; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
$wh->setRecipientEmail('[email protected]'); | ||
$wh->setTags(['my_tag_1', 'my_tag_2']); | ||
$wh->setMetadata(['my_var_1' => 'Mailgun Variable #1', 'my-var-2' => 'awesome']); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', 1521233195.375624)); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', '1521233195.375624')); | ||
$wh->setReason('No Such User Here'); | ||
|
||
return $wh; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
$wh->setRecipientEmail('[email protected]'); | ||
$wh->setTags(['my_tag_1', 'my_tag_2']); | ||
$wh->setMetadata(['my_var_1' => 'Mailgun Variable #1', 'my-var-2' => 'awesome']); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', 1521233123.501324)); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', '1521233123.501324')); | ||
|
||
return $wh; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
$wh->setRecipientEmail('[email protected]'); | ||
$wh->setTags(['my_tag_1', 'my_tag_2']); | ||
$wh->setMetadata(['my_var_1' => 'Mailgun Variable #1', 'my-var-2' => 'awesome']); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', 1521233195.375624)); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', '1521233195.375624')); | ||
$wh->setReason('Not delivering to previously bounced address'); | ||
|
||
return $wh; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
$wh->setRecipientEmail('[email protected]'); | ||
$wh->setTags(['my_tag_1', 'my_tag_2']); | ||
$wh->setMetadata(['my_var_1' => 'Mailgun Variable #1', 'my-var-2' => 'awesome']); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', 1521472262.908181)); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', '1521472262.908181')); | ||
$wh->setReason("4.2.2 The email account that you tried to reach is over quota. Please direct\n4.2.2 the recipient to\n4.2.2 https://support.example.com/mail/?p=422"); | ||
|
||
return $wh; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ | |
$wh->setRecipientEmail('[email protected]'); | ||
$wh->setTags(['my_tag_1', 'my_tag_2']); | ||
$wh->setMetadata(['my_var_1' => 'Mailgun Variable #1', 'my-var-2' => 'awesome']); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', 1521243339.873676)); | ||
$wh->setDate(\DateTimeImmutable::createFromFormat('U.u', '1521243339.873676')); | ||
|
||
return $wh; |