Skip to content

Commit 9835fb5

Browse files
dependabot[bot]boesing
authored andcommitted
build(deps-dev): bump doctrine/coding-standard from 10.0.0 to 11.1.0
Bumps [doctrine/coding-standard](https://github.com/doctrine/coding-standard) from 10.0.0 to 11.1.0. - [Release notes](https://github.com/doctrine/coding-standard/releases) - [Commits](doctrine/coding-standard@10.0.0...11.1.0) --- updated-dependencies: - dependency-name: doctrine/coding-standard dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 958bfd6 commit 9835fb5

File tree

7 files changed

+56
-43
lines changed

7 files changed

+56
-43
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"webmozart/assert": "^1.9"
99
},
1010
"require-dev": {
11-
"doctrine/coding-standard": "^10.0",
11+
"doctrine/coding-standard": "^11.1",
1212
"phpunit/phpunit": "^9.5",
1313
"psalm/plugin-phpunit": "^0.18.4",
1414
"symfony/polyfill-php80": "^1.22",

composer.lock

Lines changed: 50 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/MappedErrorCollection.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ private function __construct(MapInterface $errors)
2020
{
2121
Assert::false($errors->isEmpty(), 'Provided errors must not be empty!');
2222
$this->errors = $errors;
23+
2324
parent::__construct('There were runtime errors while executing multiple tasks.');
2425
}
2526

src/OrderedErrorCollection.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ private function __construct(OrderedListInterface $errors)
2020
{
2121
Assert::false($errors->isEmpty(), 'Provided errors must not be empty!');
2222
$this->errors = $errors;
23+
2324
parent::__construct('There were runtime errors while executing multiple tasks.');
2425
}
2526

tests/GenericMapTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ static function (string $key): string {
123123
protected function setUp(): void
124124
{
125125
parent::setUp();
126+
126127
$this->iteration = 0;
127128
}
128129

tests/GenericOrderedListTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ final class GenericOrderedListTest extends TestCase
4343
protected function setUp(): void
4444
{
4545
parent::setUp();
46+
4647
$this->iteration = 0;
4748
}
4849

tests/TypedArrayFactoryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ final class TypedArrayFactoryTest extends TestCase
1313
protected function setUp(): void
1414
{
1515
parent::setUp();
16+
1617
$this->factory = new TypedArrayFactory();
1718
}
1819

0 commit comments

Comments
 (0)