We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 513afa1 + 730faa9 commit d91a0e5Copy full SHA for d91a0e5
src/Glob/GlobClassExplorer.php
@@ -56,7 +56,7 @@ public function __construct(string $namespace, CacheInterface $cache, ?int $cach
56
*/
57
public function getClasses(): array
58
{
59
- $key = 'globClassExplorer_'.$this->namespace;
+ $key = 'globClassExplorer_'.str_replace('\\', '_', $this->namespace);
60
$classes = $this->cache->get($key);
61
if ($classes === null) {
62
$classes = $this->doGetClasses();
0 commit comments