Skip to content

Commit 023c1e8

Browse files
authored
Normalize paths in PHPStan configuration (#4)
1 parent 4920cd3 commit 023c1e8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

phpstan.neon.dist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ parameters:
55
level: 8
66
paths:
77
- bin/inline-phpstan-ignores
8-
- src
9-
- tests
8+
- src/
9+
- tests/
1010
excludePaths:
1111
analyseAndScan:
12-
- tests/data/*
12+
- tests/data/
1313
tmpDir: cache/phpstan/
1414
checkMissingCallableSignature: true
1515
checkUninitializedProperties: true
@@ -26,6 +26,6 @@ parameters:
2626
- LogicException
2727

2828
ignoreErrors:
29-
- # allow uncatched exceptions in tests
29+
- # Allow uncaught exceptions in tests
3030
identifier: missingType.checkedException
31-
path: tests/*
31+
path: tests/

0 commit comments

Comments
 (0)