Skip to content

Commit c544e3c

Browse files
Merge branch '4.2'
* 4.2: (26 commits) Apply php-cs-fixer rule for array_key_exists() [Cache] fix warming up cache.system and apcu [Security] Change FormAuthenticator if condition handles multi-byte characters in autocomplete speed up tests running them without debug flag [Translations] added missing Croatian validators Fix getItems() performance issue with RedisCluster (php-redis) [VarDumper] Keep a ref to objects to ensure their handle cannot be reused while cloning IntegerType: reject submitted non-integer numbers be keen to newcomers [HttpKernel] Fix possible infinite loop of exceptions fixed CS [Validator] Added missing translations for Afrikaans do not validate non-submitted form fields in PATCH requests Update usage example in ArrayInput doc block. [Console] Prevent ArgvInput::getFirstArgument() from returning an option value [Validator] Fixed duplicate UUID fixed CS [EventDispatcher] Fix unknown priority Avoid mutating the Finder when building the iterator ...
2 parents 8af9e63 + 61d85c5 commit c544e3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Client.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ public function back()
548548
{
549549
do {
550550
$request = $this->history->back();
551-
} while (array_key_exists(serialize($request), $this->redirects));
551+
} while (\array_key_exists(serialize($request), $this->redirects));
552552

553553
return $this->requestFromRequest($request, false);
554554
}
@@ -562,7 +562,7 @@ public function forward()
562562
{
563563
do {
564564
$request = $this->history->forward();
565-
} while (array_key_exists(serialize($request), $this->redirects));
565+
} while (\array_key_exists(serialize($request), $this->redirects));
566566

567567
return $this->requestFromRequest($request, false);
568568
}

0 commit comments

Comments
 (0)