Skip to content

Commit

Permalink
phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrico committed Jan 24, 2025
1 parent 3e52f99 commit f005470
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/unit/Container/ContainerConfiguratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ public function testExtensionByTypeNested(): void
$service = static function (): \ArrayAccess {
return new \ArrayObject();
};
$configurator->addService( 'test', $service );
$configurator->addService('test', $service);

// We can't declare classes inside a class, but we can eval it.
$php = <<<'PHP'
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/Container/ReadOnlyContainerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ private function factoryContainer(
array $services = [],
array $factoryIds = [],
array $containers = []
): Container
{
): Container {

return new Container($services, $factoryIds, new ServiceExtensions(), $containers);
}
}

0 comments on commit f005470

Please sign in to comment.