Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8cf2a2f

Browse files
committed
Coding standards
1 parent e88ac55 commit 8cf2a2f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Symfony/Component/DependencyInjection/Tests/ContainerBuilderTest.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,8 +1134,7 @@ public function testPrivateServiceUser()
11341134
try {
11351135
$container->get('bar');
11361136
$this->fail('Expected ServiceNotFoundException not thrown');
1137-
}
1138-
catch (ServiceNotFoundException $e) {
1137+
} catch (ServiceNotFoundException $e) {
11391138
$this->addToAssertionCount(1);
11401139
}
11411140
$this->assertInstanceOf(\BarClass::class, $container->get('bar_user')->bar);
@@ -1145,8 +1144,7 @@ public function testPrivateServiceUser()
11451144
try {
11461145
$container->get('bar');
11471146
$this->fail('Expected ServiceNotFoundException not thrown');
1148-
}
1149-
catch (ServiceNotFoundException $e) {
1147+
} catch (ServiceNotFoundException $e) {
11501148
$this->addToAssertionCount(1);
11511149
}
11521150

0 commit comments

Comments
 (0)