Skip to content

Commit

Permalink
Merge branch '5.4' into 6.3
Browse files Browse the repository at this point in the history
* 5.4:
  [Form] Fix merging params & files when "multiple" is enabled
  [HttpFoundation] Do not swallow trailing `=` in cookie value
  Handle Sendinblue error responses without a message key
  [Serializer] Fix collecting only first missing constructor argument
  [Messenger] Fix DoctrineOpenTransactionLoggerMiddleware
  [Translation] Add missing return type
  [Validator] add missing catalan translations
  • Loading branch information
nicolas-grekas committed Oct 17, 2023
2 parents ae10806 + 96015d7 commit 869b26c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Util/ArrayConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ private static function cancelExpand(array &$tree, string $prefix, array $node):
}
}

private static function getKeyParts(string $key)
/**
* @return string[]
*/
private static function getKeyParts(string $key): array
{
$parts = explode('.', $key);
$partsCount = \count($parts);
Expand Down

0 comments on commit 869b26c

Please sign in to comment.