|
77 | 77 | $services->alias('api_platform.property_accessor', 'property_accessor'); |
78 | 78 |
|
79 | 79 | $services->set('api_platform.property_info.reflection_extractor', ReflectionExtractor::class) |
80 | | - ->tag('property_info.list_extractor', ['priority' => -1000]) |
81 | | - ->tag('property_info.type_extractor', ['priority' => -1002]) |
82 | | - ->tag('property_info.access_extractor', ['priority' => -1000]) |
83 | | - ->tag('property_info.initializable_extractor', ['priority' => -1000]); |
| 80 | + ->tag('api_platform.property_info.list_extractor', ['priority' => -1000]) |
| 81 | + ->tag('api_platform.property_info.type_extractor', ['priority' => -1002]) |
| 82 | + ->tag('api_platform.property_info.access_extractor', ['priority' => -1000]) |
| 83 | + ->tag('api_platform.property_info.initializable_extractor', ['priority' => -1000]); |
84 | 84 |
|
85 | 85 | if (class_exists(DocBlockFactory::class)) { |
86 | 86 | $services->set('api_platform.property_info.php_doc_extractor', PhpDocExtractor::class) |
87 | | - ->tag('property_info.description_extractor', ['priority' => -1000]) |
88 | | - ->tag('property_info.type_extractor', ['priority' => -1001]); |
| 87 | + ->tag('api_platform.property_info.description_extractor', ['priority' => -1000]) |
| 88 | + ->tag('api_platform.property_info.type_extractor', ['priority' => -1001]); |
89 | 89 | } |
90 | 90 |
|
91 | 91 | if (class_exists(PhpDocParser::class) && class_exists(ContextFactory::class)) { |
92 | 92 | $services->set('api_platform.property_info.phpstan_extractor', PhpStanExtractor::class) |
93 | | - ->tag('property_info.type_extractor', ['priority' => -1000]); |
| 93 | + ->tag('api_platform.property_info.type_extractor', ['priority' => -1000]); |
94 | 94 | } |
95 | 95 |
|
96 | 96 | $services->set('api_platform.property_info', PropertyInfoExtractor::class) |
97 | 97 | ->args([ |
98 | | - tagged_iterator('property_info.list_extractor'), |
99 | | - tagged_iterator('property_info.type_extractor'), |
100 | | - tagged_iterator('property_info.description_extractor'), |
101 | | - tagged_iterator('property_info.access_extractor'), |
102 | | - tagged_iterator('property_info.initializable_extractor'), |
| 98 | + tagged_iterator('api_platform.property_info.list_extractor'), |
| 99 | + tagged_iterator('api_platform.property_info.type_extractor'), |
| 100 | + tagged_iterator('api_platform.property_info.description_extractor'), |
| 101 | + tagged_iterator('api_platform.property_info.access_extractor'), |
| 102 | + tagged_iterator('api_platform.property_info.initializable_extractor'), |
103 | 103 | ]); |
104 | 104 |
|
105 | 105 | $services->set('api_platform.property_info.cache', PropertyInfoCacheExtractor::class) |
|
0 commit comments