Skip to content

Commit a867b03

Browse files
committed
fixed CS
1 parent 1636b41 commit a867b03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Console/Descriptor/MarkdownDescriptor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ protected function describeContainerDefinition(Definition $definition, array $op
199199
$output .= "\n".'- Autowired: '.($definition->isAutowired() ? 'yes' : 'no');
200200

201201
foreach ($definition->getAutowiringTypes() as $autowiringType) {
202-
$output .= "\n".'- Autowiring Type: `'.$autowiringType.'`';
202+
$output .= "\n".'- Autowiring Type: `'.$autowiringType.'`';
203203
}
204204
}
205205

Tests/DependencyInjection/Compiler/PropertyInfoPassTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function testReturningEmptyArrayWhenNoService()
5353
{
5454
$container = $this->getMock('Symfony\Component\DependencyInjection\ContainerBuilder', array('findTaggedServiceIds'));
5555

56-
$container->expects($this->any())
56+
$container->expects($this->any())
5757
->method('findTaggedServiceIds')
5858
->will($this->returnValue(array()));
5959

0 commit comments

Comments
 (0)