Skip to content

Commit 96b554c

Browse files
committed
Apply fixes from StyleCI
1 parent b5d81f5 commit 96b554c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tests/Container/ContainerTest.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -526,20 +526,20 @@ public function testGetAlias()
526526

527527
public function testCurrentlyResolving()
528528
{
529-
$container = new Container;
529+
$container = new Container;
530530

531-
$container->afterResolvingAttribute(ContainerCurrentResolvingAttribute::class, function ($attr, $instance, $container) {
532-
$this->assertEquals(ContainerCurrentResolvingConcrete::class, $container->currentlyResolving());
533-
});
531+
$container->afterResolvingAttribute(ContainerCurrentResolvingAttribute::class, function ($attr, $instance, $container) {
532+
$this->assertEquals(ContainerCurrentResolvingConcrete::class, $container->currentlyResolving());
533+
});
534534

535-
$container->when(ContainerCurrentResolvingConcrete::class)
536-
->needs('$currentlyResolving')
537-
->give(fn ($container) => $container->currentlyResolving());
535+
$container->when(ContainerCurrentResolvingConcrete::class)
536+
->needs('$currentlyResolving')
537+
->give(fn ($container) => $container->currentlyResolving());
538538

539-
$resolved = $container->make(ContainerCurrentResolvingConcrete::class);
539+
$resolved = $container->make(ContainerCurrentResolvingConcrete::class);
540540

541-
$this->assertEquals(ContainerCurrentResolvingConcrete::class, $resolved->currentlyResolving);
542-
}
541+
$this->assertEquals(ContainerCurrentResolvingConcrete::class, $resolved->currentlyResolving);
542+
}
543543

544544
public function testGetAliasRecursive()
545545
{

0 commit comments

Comments
 (0)