Skip to content

Commit

Permalink
Merge pull request #209 from boesing/dependabot/composer/doctrine/cod…
Browse files Browse the repository at this point in the history
…ing-standard-11.1.0

build(deps-dev): bump doctrine/coding-standard from 10.0.0 to 11.1.0
  • Loading branch information
boesing committed Apr 14, 2023
2 parents 958bfd6 + 9835fb5 commit 1dba6b6
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 43 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"webmozart/assert": "^1.9"
},
"require-dev": {
"doctrine/coding-standard": "^10.0",
"doctrine/coding-standard": "^11.1",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.18.4",
"symfony/polyfill-php80": "^1.22",
Expand Down
92 changes: 50 additions & 42 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/MappedErrorCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ private function __construct(MapInterface $errors)
{
Assert::false($errors->isEmpty(), 'Provided errors must not be empty!');
$this->errors = $errors;

parent::__construct('There were runtime errors while executing multiple tasks.');
}

Expand Down
1 change: 1 addition & 0 deletions src/OrderedErrorCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ private function __construct(OrderedListInterface $errors)
{
Assert::false($errors->isEmpty(), 'Provided errors must not be empty!');
$this->errors = $errors;

parent::__construct('There were runtime errors while executing multiple tasks.');
}

Expand Down
1 change: 1 addition & 0 deletions tests/GenericMapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ static function (string $key): string {
protected function setUp(): void
{
parent::setUp();

$this->iteration = 0;
}

Expand Down
1 change: 1 addition & 0 deletions tests/GenericOrderedListTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ final class GenericOrderedListTest extends TestCase
protected function setUp(): void
{
parent::setUp();

$this->iteration = 0;
}

Expand Down
1 change: 1 addition & 0 deletions tests/TypedArrayFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ final class TypedArrayFactoryTest extends TestCase
protected function setUp(): void
{
parent::setUp();

$this->factory = new TypedArrayFactory();
}

Expand Down

0 comments on commit 1dba6b6

Please sign in to comment.