Skip to content

Commit f005470

Browse files
committed
phpcs
1 parent 3e52f99 commit f005470

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/unit/Container/ContainerConfiguratorTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ public function testExtensionByTypeNested(): void
446446
$service = static function (): \ArrayAccess {
447447
return new \ArrayObject();
448448
};
449-
$configurator->addService( 'test', $service );
449+
$configurator->addService('test', $service);
450450

451451
// We can't declare classes inside a class, but we can eval it.
452452
$php = <<<'PHP'

tests/unit/Container/ReadOnlyContainerTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ private function factoryContainer(
220220
array $services = [],
221221
array $factoryIds = [],
222222
array $containers = []
223-
): Container
224-
{
223+
): Container {
224+
225225
return new Container($services, $factoryIds, new ServiceExtensions(), $containers);
226226
}
227227
}

0 commit comments

Comments
 (0)