Skip to content

Commit 1dba6b6

Browse files
authored
Merge pull request #209 from boesing/dependabot/composer/doctrine/coding-standard-11.1.0
build(deps-dev): bump doctrine/coding-standard from 10.0.0 to 11.1.0
2 parents 958bfd6 + 9835fb5 commit 1dba6b6

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)