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 d369d50 commit c8e3aaaCopy full SHA for c8e3aaa
2 files changed
.github/workflows/PHPStan.yml
@@ -19,7 +19,7 @@ jobs:
19
name: PHPStan - ${{ matrix.php_versions }}
20
21
steps:
22
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
23
24
- name: Setup PHP, with composer and extensions
25
uses: shivammathur/setup-php@v2
@@ -30,4 +30,4 @@ jobs:
30
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
31
32
- name: Run PHPStan
33
- run: vendor/bin/phpstan analyse app/src/ app/tests/
+ run: vendor/bin/phpstan analyse
phpstan.neon
@@ -1,5 +1,8 @@
1
parameters:
2
level: max
3
+ paths:
4
+ - app/src/
5
+ - app/tests/
6
reportUnmatchedIgnoredErrors: false
7
ignoreErrors:
8
- '#Dynamic call to static method PHPUnit\\Framework\\.*#'
0 commit comments