File tree Expand file tree Collapse file tree 3 files changed +0
-19
lines changed Expand file tree Collapse file tree 3 files changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -39,17 +39,10 @@ Dependency Injection
39
39
* :ref: `AutowireServiceClosure <autowiring_closures >`
40
40
* :ref: `Exclude <service-psr4-loader >`
41
41
* :ref: `Lazy <lazy-services_configuration >`
42
- * :ref: `TaggedIterator <tags_reference-tagged-services >`
43
- * :ref: `TaggedLocator <service-subscribers-locators_defining-service-locator >`
44
42
* :ref: `Target <autowiring-multiple-implementations-same-type >`
45
43
* :ref: `When <service-container_limiting-to-env >`
46
44
* :ref: `WhenNot <service-container_limiting-to-env >`
47
45
48
- .. deprecated :: 7.1
49
-
50
- The :class: `Symfony\\ Component\\ DependencyInjection\\ Attribute\\ TaggedIterator `
51
- and :class: `Symfony\\ Component\\ DependencyInjection\\ Attribute\\ TaggedLocator `
52
- attributes were deprecated in Symfony 7.1.
53
46
54
47
EventDispatcher
55
48
~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -307,14 +307,6 @@ This is done by having ``getSubscribedServices()`` return an array of
307
307
];
308
308
}
309
309
310
- .. deprecated :: 7.1
311
-
312
- The :class: `Symfony\\ Component\\ DependencyInjection\\ Attribute\\ TaggedIterator `
313
- and :class: `Symfony\\ Component\\ DependencyInjection\\ Attribute\\ TaggedLocator `
314
- attributes were deprecated in Symfony 7.1 in favor of
315
- :class: `Symfony\\ Component\\ DependencyInjection\\ Attribute\\ AutowireIterator `
316
- and :class: `Symfony\\ Component\\ DependencyInjection\\ Attribute\\ AutowireLocator `.
317
-
318
310
.. note ::
319
311
320
312
The above example requires using ``3.2 `` version or newer of ``symfony/service-contracts ``.
Original file line number Diff line number Diff line change @@ -1047,8 +1047,6 @@ you can define it in the configuration of the collecting service:
1047
1047
// config/services.php
1048
1048
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
1049
1049
1050
- use Symfony\Component\DependencyInjection\Argument\TaggedIteratorArgument;
1051
-
1052
1050
return function (ContainerConfigurator $container): void {
1053
1051
$services = $container->services();
1054
1052
@@ -1138,7 +1136,6 @@ to index the services:
1138
1136
1139
1137
use App\Handler\One;
1140
1138
use App\Handler\Two;
1141
- use Symfony\Component\DependencyInjection\Argument\TaggedIteratorArgument;
1142
1139
1143
1140
return function (ContainerConfigurator $container): void {
1144
1141
$services = $container->services();
@@ -1242,7 +1239,6 @@ get the value used to index the services:
1242
1239
namespace Symfony\Component\DependencyInjection\Loader\Configurator;
1243
1240
1244
1241
use App\HandlerCollection;
1245
- use Symfony\Component\DependencyInjection\Argument\TaggedIteratorArgument;
1246
1242
1247
1243
return function (ContainerConfigurator $container) {
1248
1244
$services = $container->services();
You can’t perform that action at this time.
0 commit comments