Merge branch '5.0'

* 5.0:
  [VarDumper] fix side-effect by not using mt_rand()
This commit is contained in:
Fabien Potencier 2020-03-18 08:17:09 +01:00
commit 56a7969f37

View File

@ -45,7 +45,7 @@ class VarCloner extends AbstractCloner
// or null if the original value is used directly
if (!$gid = self::$gid) {
$gid = self::$gid = uniqid(mt_rand(), true); // Unique string used to detect the special $GLOBALS variable
$gid = self::$gid = md5(random_bytes(6)); // Unique string used to detect the special $GLOBALS variable
}
$arrayStub = new Stub();
$arrayStub->type = Stub::TYPE_ARRAY;