Skip to content

Commit 7126531

Browse files
authored
Apply fixes from StyleCI (#36553)
1 parent 6f9bb4c commit 7126531

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

tests/Container/ContainerTest.php

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -564,29 +564,33 @@ public function testContainerCanResolveClasses()
564564
$this->assertInstanceOf(ContainerConcreteStub::class, $class);
565565
}
566566

567-
public function testContainerCanCatchCircularDependency() {
567+
public function testContainerCanCatchCircularDependency()
568+
{
568569
$this->expectException(CircularDependencyException::class);
569570

570571
$container = new Container;
571572
$container->get(CircularAStub::class);
572573
}
573574
}
574575

575-
class CircularAStub {
576-
public function __construct(CircularBStub $b) {
577-
576+
class CircularAStub
577+
{
578+
public function __construct(CircularBStub $b)
579+
{
578580
}
579581
}
580582

581-
class CircularBStub {
582-
public function __construct(CircularCStub $c) {
583-
583+
class CircularBStub
584+
{
585+
public function __construct(CircularCStub $c)
586+
{
584587
}
585588
}
586589

587-
class CircularCStub {
588-
public function __construct(CircularAStub $a) {
589-
590+
class CircularCStub
591+
{
592+
public function __construct(CircularAStub $a)
593+
{
590594
}
591595
}
592596

0 commit comments

Comments
 (0)