8000 fixed CS · symfony/symfony@26bc96e · GitHub
[go: up one dir, main page]

Skip to content

Commit 26bc96e

Browse files
committed
fixed CS
1 parent f730ffa commit 26bc96e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
< E854 /div>

src/Symfony/Component/DependencyInjection/ContainerBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ public function merge(ContainerBuilder $container)
643643

644644
foreach ($container->getAutomaticInstanceofDefinitions() as $interface => $childDefinition) {
645645
if (isset($this->automaticInstanceofDefinitions[$interface])) {
646-
throw new InvalidArgumentException(sprintf('%s has already been autoconfigured and merge() does not support merging autoconfiguration for the same class/interface.', $interface));
646+
throw new InvalidArgumentException(sprintf('"%s" has already been autoconfigured and merge() does not support merging autoconfiguration for the same class/interface.', $interface));
647647
}
648648

649649
$this->automaticInstanceofDefinitions[$interface] = $childDefinition;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ public function testMerge()
578578

579579
/**
580580
* @expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException
581-
* @expectedExceptionMessage AInterface has already been autoconfigured and merge() does not support merging autoconfiguration for the same class/interface.
581+
* @expectedExceptionMessage "AInterface" has already been autoconfigured and merge() does not support merging autoconfiguration for the same class/interface.
582582
*/
583583
public function testMergeThrowsExceptionForDuplicateAutomaticInstanceofDefinitions()
584584
{

0 commit comments

Comments
 (0)
0