Skip to content

Commit 8fde3ea

Browse files
committed
minor #59497 [PropertyInfo] Move aliases under service definition (HypeMC)
This PR was merged into the 7.3 branch. Discussion ---------- [PropertyInfo] Move aliases under service definition | Q | A | ------------- | --- | Branch? | 7.3 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | - | License | MIT Follow-up to #50334, the aliases are normally defined right after the service. Commits ------- 22feb79 [PropertyInfo] Move aliases under service definition
2 parents 70513fc + 22feb79 commit 8fde3ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Bundle/FrameworkBundle/Resources/config/property_info.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@
4848
->tag('property_info.access_extractor', ['priority' => -1000])
4949
->tag('property_info.initializable_extractor', ['priority' => -1000])
5050

51+
->alias(PropertyReadInfoExtractorInterface::class, 'property_info.reflection_extractor')
52+
->alias(PropertyWriteInfoExtractorInterface::class, 'property_info.reflection_extractor')
53+
5154
->set('property_info.constructor_extractor', ConstructorExtractor::class)
5255
->args([[]])
5356
->tag('property_info.type_extractor', ['priority' => -999])
54-
55-
->alias(PropertyReadInfoExtractorInterface::class, 'property_info.reflection_extractor')
56-
->alias(PropertyWriteInfoExtractorInterface::class, 'property_info.reflection_extractor')
5757
;
5858
};

0 commit comments

Comments
 (0)