File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1818 tools : composer:v2
1919
2020 - name : Install dependencies with composer
21- run : composer install -ov
21+ run : composer update --no-ansi --no-interaction --no-progress
2222
2323 - name : Run php-cs-fixer
2424 run : PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer fix --allow-risky=yes --dry-run --using-cache=no --verbose
3838 tools : composer:v2
3939
4040 - name : Install dependencies with composer
41- run : composer install -ov
41+ run : composer update --no-ansi --no-interaction --no-progress
4242
4343 - name : Run vimeo/psalm
4444 run : ./vendor/bin/psalm --config=psalm.xml --shepherd
5858 tools : composer:v2
5959
6060 - name : Install dependencies with composer
61- run : composer install -ov
61+ run : composer update --no-ansi --no-interaction --no-progress
6262
6363 - name : Run phpstan/phpstan
6464 run : ./vendor/bin/phpstan analyse src --level 7
8888 tools : composer:v2
8989
9090 - name : Install dependencies
91- run : composer update --no-ansi --no-interaction --no-progress --prefer-lowest
91+ run : composer update --no-ansi --no-interaction --no-progress
9292
9393 - name : Run tests with phpunit
9494 run : XDEBUG_MODE=coverage php ./vendor/bin/phpunit --configuration ./phpunit.xml --coverage-clover=coverage.xml
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ public function wthNullableObjectArgument(): void
131131 public function denormalizeToUnknownClass (): void
132132 {
133133 $ this ->expectException (DenormalizeFailed::class);
134- $ this ->expectExceptionMessage ('Class ` Qwerty` not exists ' );
134+ $ this ->expectExceptionMessage ('Class " Qwerty" not exists ' );
135135
136136 /** @noinspection PhpUndefinedClassInspection */
137137 (new SymfonySerializer ())->denormalize ([], \Qwerty::class);
You can’t perform that action at this time.
0 commit comments