Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 786a915

Browse filesBrowse files
committed
Fix CS
1 parent 8c34d6d commit 786a915
Copy full SHA for 786a915

File tree

1 file changed

+3
-3
lines changed
Filter options

1 file changed

+3
-3
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php
+3-3Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.