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/835
Author: @schmittjoh
Created: 11/1/2013
Status: ✅ Merged
Merged: 2/8/2014
Merged by: @beberlei
Base:
master← Head:ValueObjects📝 Commits (10+)
b4b9709adds a new output format02d34bb[DDC-93] Started ValueObjectsTest32988b3[DDC-93] Parse @Embedded and @Embeddable during SchemaTool processing to make parsing work.0204a8b[DDC-93] Implement first working version of value objects using a ReflectionProxy object, bypassing changes to UnitOfWork, Persisters and Hydrators.011776f[DDC-93] Add some TODOs in code.879ab6e[DDC-93] Show CRUD with value objects with current change tracking assumptions.9613f1d[DDC-93] Rename ReflectionProxy to ReflectionEmbeddedProperty, Add DQL test with Object and Array Hydration.38b041dMerge remote-tracking branch 'origin/ValueObjects'c67ac8aadds support for selecting based on embedded fields30897c3adds tests for update/delete DQL queries📊 Changes
25 files changed (+759 additions, -10 deletions)
View changed files
📝
UPGRADE.md(+5 -0)📝
docs/en/index.rst(+1 -0)📝
docs/en/toc.rst(+1 -0)➕
docs/en/tutorials/embeddables.rst(+83 -0)📝
doctrine-mapping.xsd(+18 -0)📝
lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php(+24 -0)📝
lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php(+91 -7)📝
lib/Doctrine/ORM/Mapping/DefaultNamingStrategy.php(+8 -0)📝
lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php(+9 -1)📝
lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php(+2 -0)📝
lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php(+18 -0)📝
lib/Doctrine/ORM/Mapping/Driver/YamlDriver.php(+12 -0)➕
lib/Doctrine/ORM/Mapping/Embeddable.php(+28 -0)➕
lib/Doctrine/ORM/Mapping/Embedded.php(+38 -0)📝
lib/Doctrine/ORM/Mapping/NamingStrategy.php(+10 -0)➕
lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php(+66 -0)📝
lib/Doctrine/ORM/Mapping/UnderscoreNamingStrategy.php(+8 -0)📝
lib/Doctrine/ORM/Query/Parser.php(+7 -1)📝
lib/Doctrine/ORM/Tools/SchemaTool.php(+1 -0)➕
tests/Doctrine/Tests/Models/ValueObjects/Name.php(+9 -0)...and 5 more files
📄 Description
This is PR #634 with the following additional changes:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.