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 3f9eb31 commit 04c876dCopy full SHA for 04c876d
.github/workflows/e2e-tests.yml
@@ -386,6 +386,10 @@ jobs:
386
cd e2e/bug-12972
387
../../bin/phpstan analyze
388
os: "macos-latest"
389
+ - script: |
390
+ cd e2e/bug-12972
391
+ ../../bin/phpstan analyze
392
+ os: "windows-latest"
393
394
steps:
395
- name: "Checkout"
src/Analyser/AnalysedFilesResolver.php
@@ -20,7 +20,7 @@ final class AnalysedFilesResolver
20
*/
21
public function __construct(array $files = [])
22
{
23
- $this->caseInsensitiveFilesystem = PHP_OS_FAMILY === 'Darwin';
+ $this->caseInsensitiveFilesystem = PHP_OS_FAMILY === 'Windows' || PHP_OS_FAMILY === 'Darwin';
24
$this->setAnalysedFiles($files);
25
}
26
0 commit comments