8000 Fix CS · symfony/symfony@786a915 · GitHub
[go: up one dir, main page]

Skip to content

Commit 786a915

Browse files
committed
Fix CS
1 parent 8c34d6d commit 786a915

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ public function testSetterInjection()
450450
$methodCalls = $container->getDefinition('setter_injection')->getMethodCalls();
451451

452452
// grab the call method names
453-
$actualMethodNameCalls = array_map(function($call) {
453+
$actualMethodNameCalls = array_map(function ($call) {
454454
return $call[0];
455455
}, $methodCalls);
456456
$this->assertEquals(
@@ -507,9 +507,9 @@ public function testIgnoreServiceWithClassNotExisting()
507507
{
508508
$container = new ContainerBuilder();
509509

510-
$container->register('class_not_exist', __NAMESPACE__ . '\OptionalServiceClass');
510+
$container->register('class_not_exist', __NAMESPACE__.'\OptionalServiceClass');
511511

512-
$barDefinition = $container->register('bar', __NAMESPACE__ . '\Bar');
512+
$barDefinition = $container->register('bar', __NAMESPACE__.'\Bar');
513513
$barDefinition->setAutowired(true);
514514

515515
$pass = new AutowirePass();

0 commit comments

Comments
 (0)
0