Skip to content

Commit 485b9cc

Browse files
Merge branch '4.4' into 5.3
* 4.4: [Process] intersect with getenv() in case-insensitive manner to get default envs [Serializer] fix support for lazy/unset properties Fix redundant type casts Revert "[DoctrineBridge] add support for the JSON type"
2 parents be52715 + ea53c7f commit 485b9cc

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
@@ -1027,7 +1027,7 @@ private function createExpression(ContainerBuilder $container, string $expressio
10271027
private function createRequestMatcher(ContainerBuilder $container, string $path = null, string $host = null, int $port = null, array $methods = [], array $ips = null, array $attributes = []): Reference
10281028
{
10291029
if ($methods) {
1030-
$methods = array_map('strtoupper', (array) $methods);
1030+
$methods = array_map('strtoupper', $methods);
10311031
}
10321032

10331033
if (null !== $ips) {

0 commit comments

Comments
 (0)