[PR #774] [CLOSED] 2.3 - Allow for custom Persisters #8694

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

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/774
Author: @gnat42
Created: 9/4/2013
Status: Closed

Base: 2.3Head: 2.3


📝 Commits (3)

  • 427eb84 Custom Entity Persister
  • c90ff73 Merge remote-tracking branch 'upstream/2.3' into 2.3
  • 905bafd Merge remote-tracking branch 'upstream/2.3' into 2.3

📊 Changes

4 files changed (+77 additions, -0 deletions)

View changed files

📝 lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php (+38 -0)
📝 lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php (+4 -0)
lib/Doctrine/ORM/Mapping/Persister.php (+30 -0)
📝 lib/Doctrine/ORM/UnitOfWork.php (+5 -0)

📄 Description

I have a situation where I needed a custom persister to handle some non-portable insert statements etc. This is what I did to make it work. Not sure if you require any additional code/comments or anything to have it merged.


🔄 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/774 **Author:** [@gnat42](https://github.com/gnat42) **Created:** 9/4/2013 **Status:** ❌ Closed **Base:** `2.3` ← **Head:** `2.3` --- ### 📝 Commits (3) - [`427eb84`](https://github.com/doctrine/orm/commit/427eb84d3dc066093687e96881900efdd44c8a3a) Custom Entity Persister - [`c90ff73`](https://github.com/doctrine/orm/commit/c90ff73fb244a30a4f2fb3fb3f51c926edef66a8) Merge remote-tracking branch 'upstream/2.3' into 2.3 - [`905bafd`](https://github.com/doctrine/orm/commit/905bafde32ae98eaaadd3e03679cca9a045b3db4) Merge remote-tracking branch 'upstream/2.3' into 2.3 ### 📊 Changes **4 files changed** (+77 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php` (+38 -0) 📝 `lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php` (+4 -0) ➕ `lib/Doctrine/ORM/Mapping/Persister.php` (+30 -0) 📝 `lib/Doctrine/ORM/UnitOfWork.php` (+5 -0) </details> ### 📄 Description I have a situation where I needed a custom persister to handle some non-portable insert statements etc. This is what I did to make it work. Not sure if you require any additional code/comments or anything to have it merged. --- <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:01:06 +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#8694