Skip to content

Commit

Permalink
build(deps-dev): bump doctrine/coding-standard from 10.0.0 to 11.1.0
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
dependabot[bot] authored and boesing committed Apr 14, 2023
1 parent 958bfd6 commit 9835fb5
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 9835fb5

Please sign in to comment.