8000 [PropertyInfo] Move aliases under service definition by HypeMC · Pull Request #59497 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[PropertyInfo] Move aliases under service definition #59497

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[PropertyInfo] Move aliases under service definition
  • Loading branch information
HypeMC committed Jan 13, 2025
commit 22feb791743fc517b243a469a40d958c7b2c0e93
6F31
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@
->tag('property_info.access_extractor', ['priority' => -1000])
->tag('property_info.initializable_extractor', ['priority' => -1000])

->alias(PropertyReadInfoExtractorInterface::class, 'property_info.reflection_extractor')
->alias(PropertyWriteInfoExtractorInterface::class, 'property_info.reflection_extractor')

->set('property_info.constructor_extractor', ConstructorExtractor::class)
->args([[]])
->tag('property_info.type_extractor', ['priority' => -999])

->alias(PropertyReadInfoExtractorInterface::class, 'property_info.reflection_extractor')
->alias(PropertyWriteInfoExtractorInterface::class, 'property_info.reflection_extractor')
;
};
Loading
0