8000 [PropertyInfo] Inject the entity manager instead of the class metadata factory by dunglas · Pull Request #10311 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[PropertyInfo] Inject the entity manager instead of the class metadata factory #10311

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 2 commits into from
Sep 11, 2018
Merged
Changes from 1 commit
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
Next Next commit
[PropertyInfo] Inject the entity manager instead of the class metadat…
…a factory
  • Loading branch information
dunglas committed Sep 10, 2018
commit 1f87e0c4b2fca36145bda8ef6733140938fa5eca
2 changes: 1 addition & 1 deletion components/property_info.rst
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ with the ``property_info`` service in the Symfony Framework.
'driver' => 'pdo_sqlite',
// ...
], $config);
$doctrineExtractor = new DoctrineExtractor($entityManager->getMetadataFactory());
$doctrineExtractor = new DoctrineExtractor($entityManager);

// List information.
$doctrineExtractor->getProperties($class);
Expand Down
0