Skip to content

Commit 7f5ff2e

Browse files
committed
Merge branch '5.4' into 6.2
* 5.4: [DependencyInjection] Remove not implemented behavior
2 parents 3829c3b + 1a37dd9 commit 7f5ff2e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

service_container/service_subscribers_locators.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,6 @@ or directly via PHP attributes:
362362
<argument type="service_locator">
363363
<argument key="App\FooCommand" type="service" id="app.command_handler.foo"/>
364364
<argument key="App\BarCommand" type="service" id="app.command_handler.bar"/>
365-
<!-- if the element has no key, the ID of the original service is used -->
366-
<argument type="service" id="app.command_handler.baz"/>
367365
</argument>
368366
</service>
369367
</services>
@@ -383,8 +381,6 @@ or directly via PHP attributes:
383381
->args([service_locator([
384382
'App\FooCommand' => service('app.command_handler.foo'),
385383
'App\BarCommand' => service('app.command_handler.bar'),
386-
// if the element has no key, the ID of the original service is used
387-
service('app.command_handler.baz'),
388384
])]);
389385
};
390386

0 commit comments

Comments
 (0)