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.
1 parent ab635c3 commit dce6412Copy full SHA for dce6412
src/Core/AutoloadInterceptor/ClassLoader.php
@@ -108,7 +108,7 @@ public function findFile($namespacedClass): false|string
108
$filePath = Path::resolve($filePath);
109
110
foreach ($this->options->getExcludePaths() as $path) {
111
- if (str_starts_with($filePath, $path)) {
+ if (str_starts_with($filePath, Path::resolve($path))) {
112
return $filePath;
113
}
114
0 commit comments