Skip to content

Commit 34610a6

Browse files
author
Masiukevich Maksim
committed
update serializer component
1 parent 00b8f55 commit 34610a6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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
@@ -38,7 +38,7 @@ jobs:
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
@@ -58,7 +58,7 @@ jobs:
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
@@ -88,7 +88,7 @@ jobs:
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

tests/Symfony/SymfonyMessageSerializerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)