Skip to content

Commit

Permalink
Merge branch '6.2' into 6.3
Browse files Browse the repository at this point in the history
* 6.2:
  [VarDumper] Fix calling scope detection inside magic accessors
  [Validator] add missing German translations
  [Serializer] Fix denormalizing abstract part headers in MimeMessageNormalizer
  [Form] Remove an obsolete phpdoc comment
  [FrameworkBundle][Workflow] Throw exception is workflow.xxx.transitions is not an array
  • Loading branch information
nicolas-grekas committed Jul 26, 2023
2 parents f783a7c + 45835b7 commit 8d6a35f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Normalizer/MimeMessageNormalizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ public function denormalize(mixed $data, string $type, string $format = null, ar
if (AbstractPart::class === $type) {
$type = $data['class'];
unset($data['class']);
$data['headers'] = $this->serializer->denormalize($data['headers'], Headers::class, $format, $context);
}

return $this->normalizer->denormalize($data, $type, $format, $context);
Expand Down

0 comments on commit 8d6a35f

Please sign in to comment.