Skip to content

Commit cca1033

Browse files
committed
fix directory separator
1 parent 05e2586 commit cca1033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Configuration/MultiCsFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class MultiCsFileLoader
2121

2222
public function __construct(string $multiCsJsonFile = null)
2323
{
24-
$this->multiCsJsonFile = $multiCsJsonFile ?: getcwd().'/multi-cs.json';
24+
$this->multiCsJsonFile = $multiCsJsonFile ?: getcwd().DIRECTORY_SEPARATOR.'multi-cs.json';
2525
}
2626

2727
public function load() : array

0 commit comments

Comments
 (0)