mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/doctrine/orm/pull/547
Author: @Burgov
Created: 1/10/2013
Status: ❌ Closed
Base:
master← Head:master📝 Commits (9)
5ef2395Mapping support for Embeddables (VOs).d519074First round of refactorings after initial commit about VOs implementation after some valuable comments.cc960baMore work around Value Objects.24fdf9fMerge remote-tracking branch 'upstream/DDC-93'619ab4cfixed isEntity methodd655880switched to correct license5805602fixed code formattinga971f65removed debug code86daa87fixed grammatics to be consistent with other methods📊 Changes
19 files changed (+602 additions, -75 deletions)
View changed files
📝
doctrine-mapping.xsd(+58 -34)📝
lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php(+29 -5)📝
lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php(+235 -21)📝
lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php(+18 -4)📝
lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php(+2 -0)📝
lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php(+20 -0)📝
lib/Doctrine/ORM/Mapping/Driver/YamlDriver.php(+19 -0)➕
lib/Doctrine/ORM/Mapping/Embeddable.php(+28 -0)➕
lib/Doctrine/ORM/Mapping/Embedded.php(+33 -0)📝
lib/Doctrine/ORM/Mapping/MappingException.php(+27 -1)📝
lib/Doctrine/ORM/Persisters/BasicEntityPersister.php(+23 -9)📝
lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php(+8 -0)📝
lib/Doctrine/ORM/Tools/SchemaTool.php(+31 -0)➕
tests/Doctrine/Tests/Models/CMS/CmsParents.php(+34 -0)📝
tests/Doctrine/Tests/Models/CMS/CmsUser.php(+4 -0)📝
tests/Doctrine/Tests/ORM/Mapping/AbstractMappingDriverTest.php(+24 -0)📝
tests/Doctrine/Tests/ORM/Mapping/php/Doctrine.Tests.ORM.Mapping.User.php(+4 -0)📝
tests/Doctrine/Tests/ORM/Mapping/xml/Doctrine.Tests.ORM.Mapping.User.dcm.xml(+1 -0)📝
tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.ORM.Mapping.User.dcm.yml(+4 -1)📄 Description
I decided to merge #265 onto master in order to revive the branch. We're going to be in desperate need for something similar to this soon.
However, I'm getting a lot of errors by PHPUnit, so I clearly missed something. Can anyone tell me what needs to happen to get this stable again?
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.