Skip to content

Commit 7563faf

Browse files
committed
wip
1 parent 1f6f6d2 commit 7563faf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/core/src/DiscoveryConfig.php

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

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

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

0 commit comments

Comments
 (0)