[PR #310] [MERGED] [DDC-889] Mention parent class for debugging purposes. #8008

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

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/310
Author: @FabioBatSilva
Created: 3/25/2012
Status: Merged
Merged: 3/30/2012
Merged by: @beberlei

Base: masterHead: DDC-889


📝 Commits (4)

  • f591e42 mention parent classes when not is a entity or mapped super class.
  • d680977 mention parent classes for identifier required exception.
  • 67af9f1 change comparison
  • 6d1209c fix typo

📊 Changes

17 files changed (+290 additions, -17 deletions)

View changed files

📝 lib/Doctrine/ORM/Mapping/MappingException.php (+23 -3)
tests/Doctrine/Tests/Models/DDC889/DDC889Class.php (+46 -0)
tests/Doctrine/Tests/Models/DDC889/DDC889Entity.php (+33 -0)
tests/Doctrine/Tests/Models/DDC889/DDC889SuperClass.php (+41 -0)
📝 tests/Doctrine/Tests/ORM/Mapping/AbstractMappingDriverTest.php (+41 -14)
📝 tests/Doctrine/Tests/ORM/Mapping/PHPMappingDriverTest.php (+10 -0)
📝 tests/Doctrine/Tests/ORM/Mapping/StaticPHPMappingDriverTest.php (+11 -0)
📝 tests/Doctrine/Tests/ORM/Mapping/XmlMappingDriverTest.php (+10 -0)
tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.DDC889.DDC889Class.php (+12 -0)
tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.DDC889.DDC889Entity.php (+3 -0)
tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.DDC889.DDC889SuperClass.php (+11 -0)
tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Class.dcm.xml (+13 -0)
tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Entity.dcm.xml (+10 -0)
tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889SuperClass.dcm.xml (+11 -0)
tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.DDC889.DDC889Class.dcm.yml (+8 -0)
tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.DDC889.DDC889Entity.dcm.yml (+2 -0)
tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.DDC889.DDC889SuperClass.dcm.yml (+5 -0)

📄 Description

@beberlei I tried to use ClassMetadata#parentClasses but is not loaded at this point.


🔄 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/310 **Author:** [@FabioBatSilva](https://github.com/FabioBatSilva) **Created:** 3/25/2012 **Status:** ✅ Merged **Merged:** 3/30/2012 **Merged by:** [@beberlei](https://github.com/beberlei) **Base:** `master` ← **Head:** `DDC-889` --- ### 📝 Commits (4) - [`f591e42`](https://github.com/doctrine/orm/commit/f591e428c39626de8c3117e6c72910bb031a7a22) mention parent classes when not is a entity or mapped super class. - [`d680977`](https://github.com/doctrine/orm/commit/d6809773dbb6d8085e29cbfec2aecadacb6b7e1c) mention parent classes for identifier required exception. - [`67af9f1`](https://github.com/doctrine/orm/commit/67af9f185322cab387f49606b7e515c1826d4ba9) change comparison - [`6d1209c`](https://github.com/doctrine/orm/commit/6d1209c06d9e3d765e3d68bc556fe678bc66f9c4) fix typo ### 📊 Changes **17 files changed** (+290 additions, -17 deletions) <details> <summary>View changed files</summary> 📝 `lib/Doctrine/ORM/Mapping/MappingException.php` (+23 -3) ➕ `tests/Doctrine/Tests/Models/DDC889/DDC889Class.php` (+46 -0) ➕ `tests/Doctrine/Tests/Models/DDC889/DDC889Entity.php` (+33 -0) ➕ `tests/Doctrine/Tests/Models/DDC889/DDC889SuperClass.php` (+41 -0) 📝 `tests/Doctrine/Tests/ORM/Mapping/AbstractMappingDriverTest.php` (+41 -14) 📝 `tests/Doctrine/Tests/ORM/Mapping/PHPMappingDriverTest.php` (+10 -0) 📝 `tests/Doctrine/Tests/ORM/Mapping/StaticPHPMappingDriverTest.php` (+11 -0) 📝 `tests/Doctrine/Tests/ORM/Mapping/XmlMappingDriverTest.php` (+10 -0) ➕ `tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.DDC889.DDC889Class.php` (+12 -0) ➕ `tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.DDC889.DDC889Entity.php` (+3 -0) ➕ `tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.Models.DDC889.DDC889SuperClass.php` (+11 -0) ➕ `tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Class.dcm.xml` (+13 -0) ➕ `tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889Entity.dcm.xml` (+10 -0) ➕ `tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.Models.DDC889.DDC889SuperClass.dcm.xml` (+11 -0) ➕ `tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.DDC889.DDC889Class.dcm.yml` (+8 -0) ➕ `tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.DDC889.DDC889Entity.dcm.yml` (+2 -0) ➕ `tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.DDC889.DDC889SuperClass.dcm.yml` (+5 -0) </details> ### 📄 Description @beberlei I tried to use ClassMetadata#parentClasses but is not loaded at this point. --- <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:57 +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#8008