[PR #205] [MERGED] PSR-0 compliance #7856

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

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/205
Author: @Seldaek
Created: 11/27/2011
Status: Merged
Merged: 11/28/2011
Merged by: @beberlei

Base: masterHead: psr0


📝 Commits (2)

📊 Changes

36 files changed (+1152 additions, -376 deletions)

View changed files

lib/Doctrine/ORM/Mapping/Annotation.php (+24 -0)
lib/Doctrine/ORM/Mapping/ChangeTrackingPolicy.php (+30 -0)
lib/Doctrine/ORM/Mapping/Column.php (+46 -0)
lib/Doctrine/ORM/Mapping/DiscriminatorColumn.php (+36 -0)
lib/Doctrine/ORM/Mapping/DiscriminatorMap.php (+30 -0)
📝 lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php (+35 -376)
lib/Doctrine/ORM/Mapping/ElementCollection.php (+31 -0)
lib/Doctrine/ORM/Mapping/Entity.php (+32 -0)
lib/Doctrine/ORM/Mapping/GeneratedValue.php (+30 -0)
lib/Doctrine/ORM/Mapping/HasLifecycleCallbacks.php (+28 -0)
lib/Doctrine/ORM/Mapping/Id.php (+28 -0)
lib/Doctrine/ORM/Mapping/Index.php (+32 -0)
lib/Doctrine/ORM/Mapping/InheritanceType.php (+30 -0)
lib/Doctrine/ORM/Mapping/JoinColumn.php (+42 -0)
lib/Doctrine/ORM/Mapping/JoinColumns.php (+30 -0)
lib/Doctrine/ORM/Mapping/JoinTable.php (+36 -0)
lib/Doctrine/ORM/Mapping/ManyToMany.php (+40 -0)
lib/Doctrine/ORM/Mapping/ManyToOne.php (+36 -0)
lib/Doctrine/ORM/Mapping/MappedSuperclass.php (+30 -0)
lib/Doctrine/ORM/Mapping/NamedQueries.php (+30 -0)

...and 16 more files

📄 Description

IMO the Common AnnotationRegistry should also start using the php native autoloader with class_exists('foo', true) instead of the current workaround.


🔄 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/205 **Author:** [@Seldaek](https://github.com/Seldaek) **Created:** 11/27/2011 **Status:** ✅ Merged **Merged:** 11/28/2011 **Merged by:** [@beberlei](https://github.com/beberlei) **Base:** `master` ← **Head:** `psr0` --- ### 📝 Commits (2) - [`10e7404`](https://github.com/doctrine/orm/commit/10e74040af68794112e92aab83b8dde972a6f6d3) PSR-0 compliance - [`b8ac2fb`](https://github.com/doctrine/orm/commit/b8ac2fb416430010fc32829cc954427434b7ff50) Add requires to new files for BC ### 📊 Changes **36 files changed** (+1152 additions, -376 deletions) <details> <summary>View changed files</summary> ➕ `lib/Doctrine/ORM/Mapping/Annotation.php` (+24 -0) ➕ `lib/Doctrine/ORM/Mapping/ChangeTrackingPolicy.php` (+30 -0) ➕ `lib/Doctrine/ORM/Mapping/Column.php` (+46 -0) ➕ `lib/Doctrine/ORM/Mapping/DiscriminatorColumn.php` (+36 -0) ➕ `lib/Doctrine/ORM/Mapping/DiscriminatorMap.php` (+30 -0) 📝 `lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php` (+35 -376) ➕ `lib/Doctrine/ORM/Mapping/ElementCollection.php` (+31 -0) ➕ `lib/Doctrine/ORM/Mapping/Entity.php` (+32 -0) ➕ `lib/Doctrine/ORM/Mapping/GeneratedValue.php` (+30 -0) ➕ `lib/Doctrine/ORM/Mapping/HasLifecycleCallbacks.php` (+28 -0) ➕ `lib/Doctrine/ORM/Mapping/Id.php` (+28 -0) ➕ `lib/Doctrine/ORM/Mapping/Index.php` (+32 -0) ➕ `lib/Doctrine/ORM/Mapping/InheritanceType.php` (+30 -0) ➕ `lib/Doctrine/ORM/Mapping/JoinColumn.php` (+42 -0) ➕ `lib/Doctrine/ORM/Mapping/JoinColumns.php` (+30 -0) ➕ `lib/Doctrine/ORM/Mapping/JoinTable.php` (+36 -0) ➕ `lib/Doctrine/ORM/Mapping/ManyToMany.php` (+40 -0) ➕ `lib/Doctrine/ORM/Mapping/ManyToOne.php` (+36 -0) ➕ `lib/Doctrine/ORM/Mapping/MappedSuperclass.php` (+30 -0) ➕ `lib/Doctrine/ORM/Mapping/NamedQueries.php` (+30 -0) _...and 16 more files_ </details> ### 📄 Description IMO the Common AnnotationRegistry should also start using the php native autoloader with `class_exists('foo', true)` instead of the current workaround. --- <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:57:12 +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#7856