<?php namespace App\Entity; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Validator\Constraints as Assert; /** * TRANSACTION * - PRESTATAIRES => ADHERENTS (Virement vers un adherent) * * @ORM\Entity */ class TransactionPrestataireAdherent extends Transaction { /** * @ORM\OneToOne(targetEntity="Prestataire") * @ORM\JoinColumn(name="prestataire_id", referencedColumnName="id") * @Assert\NotBlank */ protected $expediteur; /** * @ORM\OneToOne(targetEntity="Adherent") * @ORM\JoinColumn(name="adherent_id", referencedColumnName="id") * @Assert\NotBlank */ protected $destinataire; /** * @return string */ public function getType(): string { return 'prestataire_adherent'; } public function getUsersToNotify() { return array_merge([$this->getDestinataire()->getUser()], $this->getExpediteur()->getUsers()->toArray()); } }