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 db90b07 commit 355eab3Copy full SHA for 355eab3
packages/core/src/DiscoveryConfig.php
@@ -23,6 +23,8 @@ public function skipClasses(string ...$classNames): self
23
public function skipPaths(string ...$paths): self
24
{
25
foreach ($paths as $path) {
26
+ $path = str_replace(['\\', '/'], DIRECTORY_SEPARATOR, $path);
27
+
28
$realpath = realpath($path);
29
30
if ($realpath === false) {
0 commit comments