[PR #1040] [CLOSED] Entity manager interface #9076

Open
opened 2026-01-22 16:03:05 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/1040
Author: @c960657
Created: 5/28/2014
Status: Closed

Base: 2.4Head: entity-manager-interface


📝 Commits (10+)

  • 48ea45f Add note about experimental nature of SLC feature
  • ad9366a Merge pull request #871 from elmariachi111/patch-1
  • 1032a16 Simpler way to handle Collection parameters in DQL queries (refs #DDC-2319)
  • 423ea00 Merge pull request #590 from michaelperrin/feature/process-collection-value
  • f054645 Remove left over ElementCollection code.
  • 22e3a76 Fix non initialized association proxy
  • 8554b04 Merge pull request #883 from FabioBatSilva/hotfix-slc
  • cf4c805 Fix cache misses using one-to-one inverse side
  • 5439a61 Merge pull request #884 from FabioBatSilva/slc-patch1
  • c681086 Fix applying ON/WITH conditions to first join in Class Table Inheritance

📊 Changes

362 files changed (+26332 additions, -2882 deletions)

View changed files

📝 .coveralls.yml (+1 -1)
📝 .travis.yml (+13 -1)
📝 CONTRIBUTING.md (+8 -2)
📝 README.markdown (+1 -3)
SECURITY.md (+18 -0)
📝 UPGRADE.md (+58 -0)
📝 build.properties (+1 -9)
📝 build.xml (+87 -100)
📝 composer.json (+7 -3)
docs/LICENSE.md (+363 -0)
📝 docs/en/cookbook/aggregate-fields.rst (+1 -1)
docs/en/cookbook/custom-mapping-types.rst (+97 -0)
📝 docs/en/cookbook/dql-custom-walkers.rst (+2 -2)
📝 docs/en/cookbook/resolve-target-entity-listener.rst (+8 -3)
📝 docs/en/cookbook/validation-of-entities.rst (+1 -1)
📝 docs/en/index.rst (+24 -20)
📝 docs/en/reference/advanced-configuration.rst (+62 -26)
📝 docs/en/reference/annotations-reference.rst (+40 -2)
📝 docs/en/reference/association-mapping.rst (+201 -252)
📝 docs/en/reference/basic-mapping.rst (+216 -403)

...and 80 more files

📄 Description

Doctrine\ORM\Tools\Event\GenerateSchemaEventArgs requires that the supplied entity manager is an EntityManager instance.

In order to support Doctrine\ORM\Decorator\EntityManagerDecorator, it should allow all EntityManagerInterface implementations.


🔄 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/1040 **Author:** [@c960657](https://github.com/c960657) **Created:** 5/28/2014 **Status:** ❌ Closed **Base:** `2.4` ← **Head:** `entity-manager-interface` --- ### 📝 Commits (10+) - [`48ea45f`](https://github.com/doctrine/orm/commit/48ea45fad0f1a0fcf1e3173b2c97a53422a43607) Add note about experimental nature of SLC feature - [`ad9366a`](https://github.com/doctrine/orm/commit/ad9366a1fc1c9f77691a8997568861c02ca73872) Merge pull request #871 from elmariachi111/patch-1 - [`1032a16`](https://github.com/doctrine/orm/commit/1032a16db29f1e6a68b9b1a8faa866984fa8045f) Simpler way to handle Collection parameters in DQL queries (refs #DDC-2319) - [`423ea00`](https://github.com/doctrine/orm/commit/423ea00539d11e9a12e952a7e9144bd2c53019dc) Merge pull request #590 from michaelperrin/feature/process-collection-value - [`f054645`](https://github.com/doctrine/orm/commit/f0546455d5a1cb9f675e16ca15fd2a4b551ce820) Remove left over ElementCollection code. - [`22e3a76`](https://github.com/doctrine/orm/commit/22e3a76327890d93af70d6e9a5d71415c62f301b) Fix non initialized association proxy - [`8554b04`](https://github.com/doctrine/orm/commit/8554b04053e212435c05a31cde30f4f1064350e1) Merge pull request #883 from FabioBatSilva/hotfix-slc - [`cf4c805`](https://github.com/doctrine/orm/commit/cf4c805427ae51c71faa81b907be80a3ccecd79c) Fix cache misses using one-to-one inverse side - [`5439a61`](https://github.com/doctrine/orm/commit/5439a613d6743567c31820145b8bd72c336185f0) Merge pull request #884 from FabioBatSilva/slc-patch1 - [`c681086`](https://github.com/doctrine/orm/commit/c6810861ca3cbcfc846a50c59e06681d84604332) Fix applying ON/WITH conditions to first join in Class Table Inheritance ### 📊 Changes **362 files changed** (+26332 additions, -2882 deletions) <details> <summary>View changed files</summary> 📝 `.coveralls.yml` (+1 -1) 📝 `.travis.yml` (+13 -1) 📝 `CONTRIBUTING.md` (+8 -2) 📝 `README.markdown` (+1 -3) ➕ `SECURITY.md` (+18 -0) 📝 `UPGRADE.md` (+58 -0) 📝 `build.properties` (+1 -9) 📝 `build.xml` (+87 -100) 📝 `composer.json` (+7 -3) ➕ `docs/LICENSE.md` (+363 -0) 📝 `docs/en/cookbook/aggregate-fields.rst` (+1 -1) ➕ `docs/en/cookbook/custom-mapping-types.rst` (+97 -0) 📝 `docs/en/cookbook/dql-custom-walkers.rst` (+2 -2) 📝 `docs/en/cookbook/resolve-target-entity-listener.rst` (+8 -3) 📝 `docs/en/cookbook/validation-of-entities.rst` (+1 -1) 📝 `docs/en/index.rst` (+24 -20) 📝 `docs/en/reference/advanced-configuration.rst` (+62 -26) 📝 `docs/en/reference/annotations-reference.rst` (+40 -2) 📝 `docs/en/reference/association-mapping.rst` (+201 -252) 📝 `docs/en/reference/basic-mapping.rst` (+216 -403) _...and 80 more files_ </details> ### 📄 Description Doctrine\ORM\Tools\Event\GenerateSchemaEventArgs requires that the supplied entity manager is an EntityManager instance. In order to support Doctrine\ORM\Decorator\EntityManagerDecorator, it should allow all EntityManagerInterface implementations. --- <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:03:05 +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#9076