[PR #545] [CLOSED] Patch 1 #8351

Open
opened 2026-01-22 15:59:31 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/545
Author: @jorgemaiden
Created: 1/4/2013
Status: Closed

Base: masterHead: patch-1


📝 Commits (10+)

  • 3e53d9d Changed commands to use command.name in the help
  • 5b55739 Moved implementation from EntityRepository to EntityManager. This decouples ER implementation from EM, as it should be.
  • 2389f77 Fixed DefaultRepositoryClassName which should follow the Persistence interface, not ORM class.
  • 2158a07 [2.3] Use HelperSet in cli-config.php
  • ac9df05 Fixed is_subclass_of comparing an interface which brought our requirement to 5.3.9. Changed to reflection approach which still keep us at the same dependency as before.
  • 369a30a Added the new DBAL 2.3 types in the EntityGenerator typehint map
  • bd1e6ac Merge pull request #410 from igorw/helper-set
  • 13d32e6 Merge remote-tracking branch 'origin/2.3' into 2.3
  • ef27721 Merge remote-tracking branch 'origin/2.3' into 2.3
  • dfa6ff6 DDC-1939 - Removing references to non-existing AssociationMapping class

📊 Changes

65 files changed (+1471 additions, -470 deletions)

View changed files

📝 UPGRADE.md (+8 -0)
📝 composer.json (+2 -2)
📝 lib/Doctrine/ORM/AbstractQuery.php (+1 -1)
📝 lib/Doctrine/ORM/EntityRepository.php (+5 -3)
📝 lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php (+4 -3)
📝 lib/Doctrine/ORM/Mapping/DefaultNamingStrategy.php (+1 -1)
📝 lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php (+0 -37)
📝 lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php (+4 -0)
📝 lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php (+27 -10)
📝 lib/Doctrine/ORM/Mapping/Driver/YamlDriver.php (+7 -1)
📝 lib/Doctrine/ORM/Mapping/MappingException.php (+2 -2)
📝 lib/Doctrine/ORM/Mapping/NamingStrategy.php (+1 -2)
📝 lib/Doctrine/ORM/Mapping/UnderscoreNamingStrategy.php (+1 -1)
📝 lib/Doctrine/ORM/ORMInvalidArgumentException.php (+6 -6)
📝 lib/Doctrine/ORM/PersistentCollection.php (+10 -2)
📝 lib/Doctrine/ORM/Persisters/BasicEntityPersister.php (+24 -6)
📝 lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php (+6 -3)
📝 lib/Doctrine/ORM/Persisters/SqlValueVisitor.php (+2 -28)
📝 lib/Doctrine/ORM/Query/AST/Functions/IdentityFunction.php (+1 -1)
📝 lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php (+1 -1)

...and 45 more files

📄 Description

[Query][AST] Remove duplicated semicolon


🔄 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/545 **Author:** [@jorgemaiden](https://github.com/jorgemaiden) **Created:** 1/4/2013 **Status:** ❌ Closed **Base:** `master` ← **Head:** `patch-1` --- ### 📝 Commits (10+) - [`3e53d9d`](https://github.com/doctrine/orm/commit/3e53d9d79c62dd401232561277900db29077aaed) Changed commands to use command.name in the help - [`5b55739`](https://github.com/doctrine/orm/commit/5b55739990e9407fc8c815de29763b7da065e0c2) Moved implementation from EntityRepository to EntityManager. This decouples ER implementation from EM, as it should be. - [`2389f77`](https://github.com/doctrine/orm/commit/2389f77d915230974146621cff2b18c59f0c2298) Fixed DefaultRepositoryClassName which should follow the Persistence interface, not ORM class. - [`2158a07`](https://github.com/doctrine/orm/commit/2158a0788eb5a92132ca1f163f8d900147d2c123) [2.3] Use HelperSet in cli-config.php - [`ac9df05`](https://github.com/doctrine/orm/commit/ac9df05c92394a93b07e0b109e535a6d0caf1272) Fixed is_subclass_of comparing an interface which brought our requirement to 5.3.9. Changed to reflection approach which still keep us at the same dependency as before. - [`369a30a`](https://github.com/doctrine/orm/commit/369a30ad3d481de58f7d8a50e4d1b3b07053f668) Added the new DBAL 2.3 types in the EntityGenerator typehint map - [`bd1e6ac`](https://github.com/doctrine/orm/commit/bd1e6ac30941796b70c172445b1e3341ccc5f7b9) Merge pull request #410 from igorw/helper-set - [`13d32e6`](https://github.com/doctrine/orm/commit/13d32e6de59e7a428ea26f0688145efefb2d88ae) Merge remote-tracking branch 'origin/2.3' into 2.3 - [`ef27721`](https://github.com/doctrine/orm/commit/ef27721db2abb6be8d674c954caa921419601390) Merge remote-tracking branch 'origin/2.3' into 2.3 - [`dfa6ff6`](https://github.com/doctrine/orm/commit/dfa6ff64c414d4d11a5d1873f6c648fe7d906285) DDC-1939 - Removing references to non-existing AssociationMapping class ### 📊 Changes **65 files changed** (+1471 additions, -470 deletions) <details> <summary>View changed files</summary> 📝 `UPGRADE.md` (+8 -0) 📝 `composer.json` (+2 -2) 📝 `lib/Doctrine/ORM/AbstractQuery.php` (+1 -1) 📝 `lib/Doctrine/ORM/EntityRepository.php` (+5 -3) 📝 `lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php` (+4 -3) 📝 `lib/Doctrine/ORM/Mapping/DefaultNamingStrategy.php` (+1 -1) 📝 `lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php` (+0 -37) 📝 `lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php` (+4 -0) 📝 `lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php` (+27 -10) 📝 `lib/Doctrine/ORM/Mapping/Driver/YamlDriver.php` (+7 -1) 📝 `lib/Doctrine/ORM/Mapping/MappingException.php` (+2 -2) 📝 `lib/Doctrine/ORM/Mapping/NamingStrategy.php` (+1 -2) 📝 `lib/Doctrine/ORM/Mapping/UnderscoreNamingStrategy.php` (+1 -1) 📝 `lib/Doctrine/ORM/ORMInvalidArgumentException.php` (+6 -6) 📝 `lib/Doctrine/ORM/PersistentCollection.php` (+10 -2) 📝 `lib/Doctrine/ORM/Persisters/BasicEntityPersister.php` (+24 -6) 📝 `lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php` (+6 -3) 📝 `lib/Doctrine/ORM/Persisters/SqlValueVisitor.php` (+2 -28) 📝 `lib/Doctrine/ORM/Query/AST/Functions/IdentityFunction.php` (+1 -1) 📝 `lib/Doctrine/ORM/Query/AST/JoinClassPathExpression.php` (+1 -1) _...and 45 more files_ </details> ### 📄 Description [Query][AST] Remove duplicated semicolon --- <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 15:59:31 +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#8351