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 10657ad commit 1e06937Copy full SHA for 1e06937
.github/workflows/ci.yaml
@@ -46,5 +46,7 @@ jobs:
46
php-version: 8.2
47
- name: Install composer dependencies
48
run: composer install --no-progress --prefer-dist --optimize-autoloader
49
+ - name: Install PHPUnit
50
+ run: vendor/bin/simple-php-unit --version
51
- name: Run PHPStan
- run: vendor/bin/phpstan analyse
52
+ run: vendor/bin/phpstan analyse
phpstan.neon.dist
@@ -3,6 +3,8 @@ parameters:
3
paths:
4
- src
5
- tests
6
+ bootstrapFiles:
7
+ - vendor/bin/.phpunit/phpunit/vendor/autoload.php
8
ignoreErrors:
9
-
10
message: '#^Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface\:\:end\(\)\.$#'
0 commit comments