We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b0b992 commit e57d996Copy full SHA for e57d996
system/Autoloader/FileLocatorCached.php
@@ -90,20 +90,6 @@ public function deleteCache(): void
90
$this->cacheHandler->delete($this->cacheKey);
91
}
92
93
- protected function getNamespaces()
94
- {
95
- if (isset($this->cache['getNamespaces'])) {
96
- return $this->cache['getNamespaces'];
97
- }
98
-
99
- $namespaces = $this->locator->getNamespaces();
100
101
- $this->cache['getNamespaces'] = $namespaces;
102
- $this->cacheUpdated = true;
103
104
- return $namespaces;
105
106
107
public function findQualifiedNameFromPath(string $path): false|string
108
{
109
if (isset($this->cache['findQualifiedNameFromPath'][$path])) {
0 commit comments