1
0
mirror of synced 2025-02-09 08:49:26 +03:00

Fix wrong YAML mapping

We had duplicated keys and that's no longer valid on symfony/yaml 3.3.
This commit is contained in:
Luís Cobucci 2017-05-30 12:51:51 +02:00
parent 2a239be45e
commit f18e178960
No known key found for this signature in database
GPG Key ID: EC61C5F01750ED3C
2 changed files with 2 additions and 4 deletions

View File

@ -135,7 +135,6 @@ Doctrine\Tests\Models\CMS\CmsUser:
name: address_id
referencedColumnName: id
cascade: [ persist ]
oneToOne:
email:
targetEntity: CmsEmail
orphanRemoval: true
@ -155,4 +154,4 @@ Doctrine\Tests\Models\CMS\CmsUser:
inverseJoinColumns:
group_id:
referencedColumnName: id
cascade: [ persist , detach, merge]
cascade: [ persist , detach, merge]

View File

@ -52,7 +52,6 @@ Doctrine\Tests\Models\Company\CompanyPerson:
name: address_id
referencedColumnName: id
cascade: [ persist ]
oneToOne:
email:
targetEntity: CmsEmail
orphanRemoval: true
@ -72,4 +71,4 @@ Doctrine\Tests\Models\Company\CompanyPerson:
inverseJoinColumns:
group_id:
referencedColumnName: id
cascade: [ persist , detach, merge]
cascade: [ persist , detach, merge]