You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 5.3:
Use GitHub issue form templates
Add missing translations for Persian (fa)
Add the missing translations for Bahasa Indonesia (id)
Update README.md
Fix deprecations on PHP 8.2
[DependencyInjection] Fix autowiring tagged arguments from attributes
Fix commands when local vault is disabled
[Lock] Fix incorrect return type in PostgreSqlStore
@@ -1086,11 +1086,12 @@ public function testDoNotAutowireDecoratorWhenSeveralArgumentOfTheType()
1086
1086
->setAutowired(true)
1087
1087
;
1088
1088
1089
+
(newDecoratorServicePass())->process($container);
1089
1090
try {
1090
1091
(newAutowirePass())->process($container);
1091
1092
$this->fail('AutowirePass should have thrown an exception');
1092
1093
} catch (AutowiringFailedException$e) {
1093
-
$this->assertSame('Cannot autowire service "Symfony\Component\DependencyInjection\Tests\Compiler\NonAutowirableDecorator": argument "$decorated1" of method "__construct()" references interface "Symfony\Component\DependencyInjection\Tests\Compiler\DecoratorInterface" but no such service exists. You should maybe alias this interface to one of these existing services: "Symfony\Component\DependencyInjection\Tests\Compiler\Decorated", "Symfony\Component\DependencyInjection\Tests\Compiler\NonAutowirableDecorator".', (string) $e->getMessage());
1094
+
$this->assertSame('Cannot autowire service "Symfony\Component\DependencyInjection\Tests\Compiler\NonAutowirableDecorator": argument "$decorated1" of method "__construct()" references interface "Symfony\Component\DependencyInjection\Tests\Compiler\DecoratorInterface" but no such service exists. You should maybe alias this interface to one of these existing services: "Symfony\Component\DependencyInjection\Tests\Compiler\NonAutowirableDecorator", "Symfony\Component\DependencyInjection\Tests\Compiler\NonAutowirableDecorator.inner".', (string) $e->getMessage());
0 commit comments