Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve containers types to use iterable objects #299

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
[ci-review] Apply changes from Rector action.
  • Loading branch information
rector-bot committed Dec 2, 2022
commit 3a87f77cb75422bef49a13e3b0ae381b58066b70
4 changes: 2 additions & 2 deletions tests/Unit/ContainerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1107,8 +1107,8 @@ public function testTagsIterable(): void

$this->assertIsArray($engines);
$this->assertCount(2, $engines);
$this->assertSame(EngineMarkOne::class, get_class($engines[1]));
$this->assertSame(EngineMarkTwo::class, get_class($engines[0]));
$this->assertSame(EngineMarkOne::class, $engines[1]::class);
$this->assertSame(EngineMarkTwo::class, $engines[0]::class);
}

public function testTagsWithExternalDefinitionMerge(): void
Expand Down