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 dafc60a commit 9008c17Copy full SHA for 9008c17
composer.json
@@ -68,7 +68,7 @@
68
]
69
},
70
"scripts": {
71
- "analyse": "phpstan analyse --level 8 src",
+ "analyse": "phpstan analyse",
72
"lint": "php-cs-fixer fix --dry-run src && php-cs-fixer fix --dry-run spec",
73
"test": "phpspec run --no-coverage",
74
"test-coverage": "phpspec run"
phpstan.neon
@@ -0,0 +1,10 @@
1
+parameters:
2
+ level: 8
3
+ reportUnmatchedIgnoredErrors: false
4
+ paths:
5
+ - src
6
+ ignoreErrors:
7
+ # phpstan has hard time to check whenever we are using PHPUnit 10 or PHPUnit 9
8
+ -
9
+ message: '#Class SebastianBergmann\\CodeCoverage\\Report\\Text constructor invoked with 4 parameters, 1-3 required\.#'
10
+ path: ./src/CodeCoverageExtension.php
0 commit comments