Skip to content
This repository has been archived by the owner on Apr 11, 2018. It is now read-only.

Commit

Permalink
Letting doctrine name our relationship
Browse files Browse the repository at this point in the history
  • Loading branch information
brettminnie committed Nov 28, 2014
1 parent bdab92c commit a06e4b2
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/Opg/Core/Model/Entity/CaseItem/PowerOfAttorney/Epa.php
Expand Up @@ -39,10 +39,6 @@ class Epa extends PowerOfAttorney
* The person who is not an attorney and who gives notice to the donor to apply to register the EPA
*
* @ORM\ManyToMany(cascade={"persist"}, targetEntity="Opg\Core\Model\Entity\CaseActor\PersonNotifyDonor")
* @ORM\JoinTable(name="pa_person_notify_donor",
* joinColumns={@ORM\JoinColumn(name="pa_id", referencedColumnName="id")},
* inverseJoinColumns={@ORM\JoinColumn(name="person_notify_donor_id", referencedColumnName="id")}
* )
* @ReadOnly
* @var ArrayCollection
*/
Expand All @@ -64,10 +60,6 @@ class Epa extends PowerOfAttorney
* It must have at least 3 relatives to be notified to create an EPA.
*
* @ORM\ManyToMany(cascade={"persist"}, targetEntity="Opg\Core\Model\Entity\CaseActor\NotifiedRelative")
* @ORM\JoinTable(name="pa_notified_relatives",
* joinColumns={@ORM\JoinColumn(name="pa_id", referencedColumnName="id")},
* inverseJoinColumns={@ORM\JoinColumn(name="notified_relative_id", referencedColumnName="id")}
* )
* @ORM\OrderBy({"id"="ASC"})
* @ReadOnly
* @var ArrayCollection
Expand All @@ -79,10 +71,6 @@ class Epa extends PowerOfAttorney
* applying to register the EPA.
*
* @ORM\ManyToMany(cascade={"persist"}, targetEntity="Opg\Core\Model\Entity\CaseActor\NotifiedAttorney")
* @ORM\JoinTable(name="pa_notified_attorneys",
* joinColumns={@ORM\JoinColumn(name="pa_id", referencedColumnName="id")},
* inverseJoinColumns={@ORM\JoinColumn(name="notified_attorney_id", referencedColumnName="id")}
* )
* @ORM\OrderBy({"id"="ASC"})
* @ReadOnly
* @var ArrayCollection
Expand Down

0 comments on commit a06e4b2

Please sign in to comment.