Skip to content

Commit 3a164f7

Browse files
committed
Fixed TypeNodeResolver cache key
1 parent 4947bba commit 3a164f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhpDoc/TypeNodeResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function enableIterableGenericFallback(): void
9292

9393
public function getCacheKey(): string
9494
{
95-
$key = md5(uniqid());
95+
$key = 'v73-generic-stubs';
9696
foreach ($this->extensions as $extension) {
9797
$key .= sprintf('-%s', $extension->getCacheKey());
9898
}

0 commit comments

Comments
 (0)