mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
Using multiple repos bug #5209
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nguyenthaialan on GitHub (Aug 4, 2016).
Example 1.
echo get_class($cityRepository->findOneBy(['name' => 'Example']));
$countryRepository->findOneBy(['name' => 'Example']);
Result:
City // Correct!
Example 1.
$countryRepository->findOneBy(['name' => 'Example']);
echo get_class($cityRepository->findOneBy(['name' => 'Example']));
Result:
Country // Incorrect!
@mikeSimonson commented on GitHub (Aug 4, 2016):
@nguyenthaialan Can you clarify the tests, what you are trying to achieve and what doesn't works exactly ?