Skip to content

Commit ccca471

Browse files
authored
Merge 3.x into master (#71)
2 parents 91f83d0 + b2289ee commit ccca471

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

src/Doctrine/PolyglotListener.php

+15-3
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,10 @@ private function loadTranslationMetadataForClass($className, EntityManager $em):
136136

137137
$metadataFactory = $em->getMetadataFactory();
138138
$cache = $em->getConfiguration()->getMetadataCache();
139+
$cacheKey = $this->getCacheKey($className);
139140

140-
if ($cache?->hasItem($className.self::CACHE_SALT)) {
141-
$item = $cache->getItem($className.self::CACHE_SALT);
141+
if ($cache?->hasItem($cacheKey)) {
142+
$item = $cache->getItem($cacheKey);
142143
$data = $item->get();
143144
if (null === $data) {
144145
$this->translatedClasses[$className] = null;
@@ -163,11 +164,22 @@ private function loadTranslationMetadataForClass($className, EntityManager $em):
163164

164165
// Save if cache driver available
165166
if ($cache) {
166-
$item = $cache->getItem($className.self::CACHE_SALT);
167+
$item = $cache->getItem($cacheKey);
167168
$item->set($meta?->sleep());
168169
$cache->save($item);
169170
}
170171

171172
return $meta;
172173
}
174+
175+
// this is taken from \Symfony\Component\Validator\Mapping\Factory\LazyLoadingMetadataFactory::escapeClassName
176+
private function getCacheKey(string $class): string
177+
{
178+
if (str_contains($class, '@')) {
179+
// anonymous class: replace all PSR6-reserved characters
180+
return str_replace(["\0", '\\', '/', '@', ':', '{', '}', '(', ')'], '.', $class).self::CACHE_SALT;
181+
}
182+
183+
return str_replace('\\', '.', $class).self::CACHE_SALT;
184+
}
173185
}

0 commit comments

Comments
 (0)