Skip to content

Commit 38d5e23

Browse files
Merge branch '5.3' into 5.4
* 5.3: [Process] intersect with getenv() in case-insensitive manner to get default envs [Serializer] fix support for lazy/unset properties Fix redundant type casts [Notifier] Fix AllMySms bridge body content Revert "[DoctrineBridge] add support for the JSON type"
2 parents 21dc623 + 485b9cc commit 38d5e23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/SecurityExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ private function createExpression(ContainerBuilder $container, string $expressio
10591059
private function createRequestMatcher(ContainerBuilder $container, string $path = null, string $host = null, int $port = null, array $methods = [], array $ips = null, array $attributes = []): Reference
10601060
{
10611061
if ($methods) {
1062-
$methods = array_map('strtoupper', (array) $methods);
1062+
$methods = array_map('strtoupper', $methods);
10631063
}
10641064

10651065
if (null !== $ips) {

0 commit comments

Comments
 (0)