Skip to content

Commit

Permalink
Merge branch '7.0' into 7.1
Browse files Browse the repository at this point in the history
* 7.0:
  fix compatibility with Redis Relay 0.8.1
  use more entropy with uniqid()
  [Cache] Improve `dbindex` DSN parameter parsing
  Support for PHP-CS-Fixer's parallel runner
  use more entropy with uniqid()
  [Contracts][HttpClient] Skip tests when zlib's `ob_gzhandler()` doesn't exist
  [Serializer] Raise correct exception in ArrayDenormalizer
  • Loading branch information
xabbuh committed Jul 17, 2024
2 parents 5bdfc57 + 87c2b09 commit 9c6a443
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/CacheWarmer/ConfigBuilderCacheWarmerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ConfigBuilderCacheWarmerTest extends TestCase

protected function setUp(): void
{
$this->varDir = sys_get_temp_dir().'/'.uniqid();
$this->varDir = sys_get_temp_dir().'/'.uniqid('', true);
$fs = new Filesystem();
$fs->mkdir($this->varDir);
}
Expand Down

0 comments on commit 9c6a443

Please sign in to comment.