<?phpnamespaceApp\Entity;useDoctrine\ORM\MappingasORM;/** * Child class used to notify adherents by email. * * - [Allocation selon foyer] Un administrateur effectue une opération de correction de solde qui conduit à un reversement. * @ORM\Entity */classCotisationTavReversementCorrectionSoldeextendsCotisationTavReversement{/** * @return string */publicfunctiongetType():string{returnparent::TYPE_REVERSEMENT_COTISATION_ADHERENT_CORRECTION_SOLDE;}publicfunctiongetUsersToNotify(){return['destinataires'=>[$this->getDestinataire()->getUser()],];}}