There was an error while loading. Please reload this page.
1 parent c525f64 commit ea4be75Copy full SHA for ea4be75
.github/workflows/code-analysis.yml
@@ -99,4 +99,4 @@ jobs:
99
- name: Install dependencies
100
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
101
- name: PHPStan
102
- run: phpstan analyse src/ tests/ --level 5
+ run: phpstan analyse
phpstan.neon
@@ -1,2 +1,15 @@
1
parameters:
2
+ paths:
3
+ - src
4
+ - tests
5
+ level: 6
6
+
7
treatPhpDocTypesAsCertain: false
8
9
+ ignoreErrors:
10
+ - message: '#Property .* has no type specified.#'
11
+ path: tests/Robtimus/Multipart/*
12
+ - message: '#Method .* has no return type specified.#'
13
14
+ - message: '#Method .* has parameter .* with no type specified.#'
15
0 commit comments