Skip to content

Commit 2a63a0c

Browse files
committed
wip
1 parent 8158090 commit 2a63a0c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/core/src/DiscoveryConfig.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ final class DiscoveryConfig
88

99
public function shouldSkip(string $input): bool
1010
{
11-
return $this->skipDiscovery[$input] ?? false;
11+
return $this->skipDiscovery[$input]
12+
?? $this->skipDiscovery[str_replace(['\\', '/'], DIRECTORY_SEPARATOR, $input)]
13+
?? false;
1214
}
1315

1416
public function skipClasses(string ...$classNames): self

0 commit comments

Comments
 (0)