Skip to content

Commit adeb9b2

Browse files
Merge branch '5.4' into 6.0
* 5.4: [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 ff44693 + 38d5e23 commit adeb9b2

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
@@ -846,7 +846,7 @@ private function createExpression(ContainerBuilder $container, string $expressio
846846
private function createRequestMatcher(ContainerBuilder $container, string $path = null, string $host = null, int $port = null, array $methods = [], array $ips = null, array $attributes = []): Reference
847847
{
848848
if ($methods) {
849-
$methods = array_map('strtoupper', (array) $methods);
849+
$methods = array_map('strtoupper', $methods);
850850
}
851851

852852
if (null !== $ips) {

0 commit comments

Comments
 (0)