[PR #695] [MERGED] Implemented support for RepositoryFactory. #8573

Closed
opened 2026-01-22 16:00:35 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/695
Author: @guilhermeblanco
Created: 6/14/2013
Status: Merged
Merged: 6/14/2013
Merged by: @guilhermeblanco

Base: masterHead: RepositoryFactory


📝 Commits (5)

  • 7eb7441 Implemented support for RepositoryFactory.
  • 37e7e84 Fixed wrong interface.
  • a66fc03 Reducing dependency on RepositoryFactory by providing EntityManager as a getRepository argument.
  • 3488049 Reduced granularity of DefaultRepositoryFactory reference to ObjectRepository instances, in cases where consumers are completely rewrote EntityRepository.
  • 52b3fc1 Updated since php doc tag.

📊 Changes

5 files changed (+173 additions, -42 deletions)

View changed files

📝 lib/Doctrine/ORM/Configuration.php (+36 -10)
📝 lib/Doctrine/ORM/EntityManager.php (+15 -31)
lib/Doctrine/ORM/Repository/DefaultRepositoryFactory.php (+77 -0)
lib/Doctrine/ORM/Repository/RepositoryFactory.php (+41 -0)
📝 tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2359Test.php (+4 -1)

📄 Description

This allows anyone to override the default behavior to load Repositories.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/doctrine/orm/pull/695 **Author:** [@guilhermeblanco](https://github.com/guilhermeblanco) **Created:** 6/14/2013 **Status:** ✅ Merged **Merged:** 6/14/2013 **Merged by:** [@guilhermeblanco](https://github.com/guilhermeblanco) **Base:** `master` ← **Head:** `RepositoryFactory` --- ### 📝 Commits (5) - [`7eb7441`](https://github.com/doctrine/orm/commit/7eb744126ba5081ea51441a893dd950046777383) Implemented support for RepositoryFactory. - [`37e7e84`](https://github.com/doctrine/orm/commit/37e7e841c350ac6920ef5dc80b242659963b0868) Fixed wrong interface. - [`a66fc03`](https://github.com/doctrine/orm/commit/a66fc03441cff3f9ad2047852d1dcbfed9f48683) Reducing dependency on RepositoryFactory by providing EntityManager as a getRepository argument. - [`3488049`](https://github.com/doctrine/orm/commit/3488049c18849a0cb942f4fea00501fa11727a83) Reduced granularity of DefaultRepositoryFactory reference to ObjectRepository instances, in cases where consumers are completely rewrote EntityRepository. - [`52b3fc1`](https://github.com/doctrine/orm/commit/52b3fc1fc3b1adfe17290126712916196f5b5345) Updated since php doc tag. ### 📊 Changes **5 files changed** (+173 additions, -42 deletions) <details> <summary>View changed files</summary> 📝 `lib/Doctrine/ORM/Configuration.php` (+36 -10) 📝 `lib/Doctrine/ORM/EntityManager.php` (+15 -31) ➕ `lib/Doctrine/ORM/Repository/DefaultRepositoryFactory.php` (+77 -0) ➕ `lib/Doctrine/ORM/Repository/RepositoryFactory.php` (+41 -0) 📝 `tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2359Test.php` (+4 -1) </details> ### 📄 Description This allows anyone to override the default behavior to load Repositories. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
admin added the pull-request label 2026-01-22 16:00:35 +01:00
admin closed this issue 2026-01-22 16:00:35 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: doctrine/archived-orm#8573