<?php
namespace Proxies\__CG__\App\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class Intervenant extends \App\Entity\Intervenant implements \Doctrine\ORM\Proxy\Proxy
{
/**
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
* initialization process and an array of ordered parameters that were passed to that method.
*
* @see \Doctrine\Common\Proxy\Proxy::__setInitializer
*/
public $__initializer__;
/**
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
*
* @see \Doctrine\Common\Proxy\Proxy::__setCloner
*/
public $__cloner__;
/**
* @var boolean flag indicating if this object was already initialized
*
* @see \Doctrine\Persistence\Proxy::__isInitialized
*/
public $__isInitialized__ = false;
/**
* @var array<string, null> properties to be lazy loaded, indexed by property name
*/
public static $lazyPropertiesNames = array (
);
/**
* @var array<string, mixed> default values of properties to be lazy loaded, with keys being the property names
*
* @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
*/
public static $lazyPropertiesDefaults = array (
);
public function __construct(?\Closure $initializer = null, ?\Closure $cloner = null)
{
$this->__initializer__ = $initializer;
$this->__cloner__ = $cloner;
}
/**
*
* @return array
*/
public function __sleep()
{
if ($this->__isInitialized__) {
return ['__isInitialized__', 'user', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'birthdayPlace', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'numIdentite', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'metier', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'status', 'emailPro', 'situationFamille', 'transportMode', 'numSecu', 'contactNom', 'contactTel', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'image', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'cni', 'nbBlouse', 'tailleBlouse', 'modelTablette', 'refTablette', 'carteSim', 'dateRetourTablette', 'dateRemiseTablette', 'identifiantEmma', 'motdepassEmma', 'mailpro', 'workContract', 'absences', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'rdvs', 'country', 'departement', 'nationality', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'motDePasseEmailPro', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'logPlannings', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'logCancelsIntervenantOld', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'logCancelsIntervenantNew', 'id', 'fullname', 'firstname', 'lastname', 'nomJeuneFille', 'birthday', 'deathday', 'gender', 'email', 'phone', 'phoneGcm', 'comments', 'address'];
}
return ['__isInitialized__', 'user', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'birthdayPlace', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'numIdentite', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'metier', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'status', 'emailPro', 'situationFamille', 'transportMode', 'numSecu', 'contactNom', 'contactTel', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'image', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'cni', 'nbBlouse', 'tailleBlouse', 'modelTablette', 'refTablette', 'carteSim', 'dateRetourTablette', 'dateRemiseTablette', 'identifiantEmma', 'motdepassEmma', 'mailpro', 'workContract', 'absences', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'rdvs', 'country', 'departement', 'nationality', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'motDePasseEmailPro', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'logPlannings', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'logCancelsIntervenantOld', '' . "\0" . 'App\\Entity\\Intervenant' . "\0" . 'logCancelsIntervenantNew', 'id', 'fullname', 'firstname', 'lastname', 'nomJeuneFille', 'birthday', 'deathday', 'gender', 'email', 'phone', 'phoneGcm', 'comments', 'address'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (Intervenant $proxy) {
$proxy->__setInitializer(null);
$proxy->__setCloner(null);
$existingProperties = get_object_vars($proxy);
foreach ($proxy::$lazyPropertiesDefaults as $property => $defaultValue) {
if ( ! array_key_exists($property, $existingProperties)) {
$proxy->$property = $defaultValue;
}
}
};
}
}
/**
*
*/
public function __clone()
{
$this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
}
/**
* Forces initialization of the proxy
*/
public function __load(): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __isInitialized(): bool
{
return $this->__isInitialized__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitialized($initialized): void
{
$this->__isInitialized__ = $initialized;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitializer(\Closure $initializer = null): void
{
$this->__initializer__ = $initializer;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __getInitializer(): ?\Closure
{
return $this->__initializer__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setCloner(\Closure $cloner = null): void
{
$this->__cloner__ = $cloner;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific cloning logic
*/
public function __getCloner(): ?\Closure
{
return $this->__cloner__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
* @deprecated no longer in use - generated code now relies on internal components rather than generated public API
* @static
*/
public function __getLazyProperties(): array
{
return self::$lazyPropertiesDefaults;
}
/**
* {@inheritDoc}
*/
public function __toString(): string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
return parent::__toString();
}
/**
* {@inheritDoc}
*/
public function getBirthdayPlace()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getBirthdayPlace', []);
return parent::getBirthdayPlace();
}
/**
* {@inheritDoc}
*/
public function setBirthdayPlace($birthdayPlace): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setBirthdayPlace', [$birthdayPlace]);
parent::setBirthdayPlace($birthdayPlace);
}
/**
* {@inheritDoc}
*/
public function getNumIdentite()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNumIdentite', []);
return parent::getNumIdentite();
}
/**
* {@inheritDoc}
*/
public function setNumIdentite($numIdentite): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNumIdentite', [$numIdentite]);
parent::setNumIdentite($numIdentite);
}
/**
* {@inheritDoc}
*/
public function getMetier()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMetier', []);
return parent::getMetier();
}
/**
* {@inheritDoc}
*/
public function setMetier($metier): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMetier', [$metier]);
parent::setMetier($metier);
}
/**
* {@inheritDoc}
*/
public function getEmailPro()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getEmailPro', []);
return parent::getEmailPro();
}
/**
* {@inheritDoc}
*/
public function setEmailPro($emailPro): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setEmailPro', [$emailPro]);
parent::setEmailPro($emailPro);
}
/**
* {@inheritDoc}
*/
public function getTransportMode()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTransportMode', []);
return parent::getTransportMode();
}
/**
* {@inheritDoc}
*/
public function setTransportMode($transportMode): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setTransportMode', [$transportMode]);
parent::setTransportMode($transportMode);
}
/**
* {@inheritDoc}
*/
public function getCountry()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCountry', []);
return parent::getCountry();
}
/**
* {@inheritDoc}
*/
public function setCountry($country): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCountry', [$country]);
parent::setCountry($country);
}
/**
* {@inheritDoc}
*/
public function getNationality()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNationality', []);
return parent::getNationality();
}
/**
* {@inheritDoc}
*/
public function setNationality($nationality): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNationality', [$nationality]);
parent::setNationality($nationality);
}
/**
* {@inheritDoc}
*/
public function getNumSecu()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNumSecu', []);
return parent::getNumSecu();
}
/**
* {@inheritDoc}
*/
public function setNumSecu($numSecu): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNumSecu', [$numSecu]);
parent::setNumSecu($numSecu);
}
/**
* {@inheritDoc}
*/
public function getStatus()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getStatus', []);
return parent::getStatus();
}
/**
* {@inheritDoc}
*/
public function setStatus($status): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setStatus', [$status]);
parent::setStatus($status);
}
/**
* {@inheritDoc}
*/
public function getNbBlouse()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNbBlouse', []);
return parent::getNbBlouse();
}
/**
* {@inheritDoc}
*/
public function setNbBlouse($nbBlouse): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNbBlouse', [$nbBlouse]);
parent::setNbBlouse($nbBlouse);
}
/**
* {@inheritDoc}
*/
public function getTailleBlouse()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTailleBlouse', []);
return parent::getTailleBlouse();
}
/**
* {@inheritDoc}
*/
public function setTailleBlouse($tailleBlouse): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setTailleBlouse', [$tailleBlouse]);
parent::setTailleBlouse($tailleBlouse);
}
/**
* {@inheritDoc}
*/
public function getModelTablette()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getModelTablette', []);
return parent::getModelTablette();
}
/**
* {@inheritDoc}
*/
public function setModelTablette($modelTablette): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setModelTablette', [$modelTablette]);
parent::setModelTablette($modelTablette);
}
/**
* {@inheritDoc}
*/
public function getRefTablette()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRefTablette', []);
return parent::getRefTablette();
}
/**
* {@inheritDoc}
*/
public function setRefTablette($refTablette): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setRefTablette', [$refTablette]);
parent::setRefTablette($refTablette);
}
/**
* {@inheritDoc}
*/
public function getCarteSim()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCarteSim', []);
return parent::getCarteSim();
}
/**
* {@inheritDoc}
*/
public function setCarteSim($carteSim): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCarteSim', [$carteSim]);
parent::setCarteSim($carteSim);
}
/**
* {@inheritDoc}
*/
public function getDateRetourTablette()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDateRetourTablette', []);
return parent::getDateRetourTablette();
}
/**
* {@inheritDoc}
*/
public function setDateRetourTablette($dateRetourTablette): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDateRetourTablette', [$dateRetourTablette]);
parent::setDateRetourTablette($dateRetourTablette);
}
/**
* {@inheritDoc}
*/
public function getDateRemiseTablette()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDateRemiseTablette', []);
return parent::getDateRemiseTablette();
}
/**
* {@inheritDoc}
*/
public function setDateRemiseTablette($dateRemiseTablette): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDateRemiseTablette', [$dateRemiseTablette]);
parent::setDateRemiseTablette($dateRemiseTablette);
}
/**
* {@inheritDoc}
*/
public function getSituationFamille()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getSituationFamille', []);
return parent::getSituationFamille();
}
/**
* {@inheritDoc}
*/
public function setSituationFamille($situationFamille): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setSituationFamille', [$situationFamille]);
parent::setSituationFamille($situationFamille);
}
/**
* {@inheritDoc}
*/
public function getWorkContract()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getWorkContract', []);
return parent::getWorkContract();
}
/**
* {@inheritDoc}
*/
public function setWorkContract($workContract): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setWorkContract', [$workContract]);
parent::setWorkContract($workContract);
}
/**
* {@inheritDoc}
*/
public function getAbsences()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAbsences', []);
return parent::getAbsences();
}
/**
* {@inheritDoc}
*/
public function setAbsences($absences): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setAbsences', [$absences]);
parent::setAbsences($absences);
}
/**
* {@inheritDoc}
*/
public function getDepartement()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDepartement', []);
return parent::getDepartement();
}
/**
* {@inheritDoc}
*/
public function setDepartement($departement): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDepartement', [$departement]);
parent::setDepartement($departement);
}
/**
* {@inheritDoc}
*/
public function getImage()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getImage', []);
return parent::getImage();
}
/**
* {@inheritDoc}
*/
public function setImage($image): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setImage', [$image]);
parent::setImage($image);
}
/**
* {@inheritDoc}
*/
public function getCni()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCni', []);
return parent::getCni();
}
/**
* {@inheritDoc}
*/
public function setCni($cni): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCni', [$cni]);
parent::setCni($cni);
}
/**
* {@inheritDoc}
*/
public function getContactNom()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getContactNom', []);
return parent::getContactNom();
}
/**
* {@inheritDoc}
*/
public function setContactNom($contactNom): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setContactNom', [$contactNom]);
parent::setContactNom($contactNom);
}
/**
* {@inheritDoc}
*/
public function getContactTel()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getContactTel', []);
return parent::getContactTel();
}
/**
* {@inheritDoc}
*/
public function setContactTel($contactTel): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setContactTel', [$contactTel]);
parent::setContactTel($contactTel);
}
/**
* {@inheritDoc}
*/
public function addAbsence(\App\Entity\Absence $item)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addAbsence', [$item]);
return parent::addAbsence($item);
}
/**
* {@inheritDoc}
*/
public function removeAbsence(\App\Entity\IntervenantSalon $item)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeAbsence', [$item]);
return parent::removeAbsence($item);
}
/**
* {@inheritDoc}
*/
public function getRdvs()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRdvs', []);
return parent::getRdvs();
}
/**
* {@inheritDoc}
*/
public function setRdvs($rdvs): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setRdvs', [$rdvs]);
parent::setRdvs($rdvs);
}
/**
* {@inheritDoc}
*/
public function getUser()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', []);
return parent::getUser();
}
/**
* {@inheritDoc}
*/
public function setUser($user): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', [$user]);
parent::setUser($user);
}
/**
* {@inheritDoc}
*/
public function getIdentifiantEmma()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getIdentifiantEmma', []);
return parent::getIdentifiantEmma();
}
/**
* {@inheritDoc}
*/
public function setIdentifiantEmma($identifiantEmma): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIdentifiantEmma', [$identifiantEmma]);
parent::setIdentifiantEmma($identifiantEmma);
}
/**
* {@inheritDoc}
*/
public function getMotdepassEmma()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMotdepassEmma', []);
return parent::getMotdepassEmma();
}
/**
* {@inheritDoc}
*/
public function setMotdepassEmma($motdepassEmma): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMotdepassEmma', [$motdepassEmma]);
parent::setMotdepassEmma($motdepassEmma);
}
/**
* {@inheritDoc}
*/
public function getMailpro()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMailpro', []);
return parent::getMailpro();
}
/**
* {@inheritDoc}
*/
public function setMailpro($mailpro): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMailpro', [$mailpro]);
parent::setMailpro($mailpro);
}
/**
* {@inheritDoc}
*/
public function getMotDePasseEmailPro(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMotDePasseEmailPro', []);
return parent::getMotDePasseEmailPro();
}
/**
* {@inheritDoc}
*/
public function setMotDePasseEmailPro(?string $motDePasseEmailPro): \App\Entity\Intervenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMotDePasseEmailPro', [$motDePasseEmailPro]);
return parent::setMotDePasseEmailPro($motDePasseEmailPro);
}
/**
* {@inheritDoc}
*/
public function getLogPlannings(): \Doctrine\Common\Collections\Collection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLogPlannings', []);
return parent::getLogPlannings();
}
/**
* {@inheritDoc}
*/
public function addLogPlanning(\App\Entity\LogPlanning $logPlanning): \App\Entity\Intervenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addLogPlanning', [$logPlanning]);
return parent::addLogPlanning($logPlanning);
}
/**
* {@inheritDoc}
*/
public function removeLogPlanning(\App\Entity\LogPlanning $logPlanning): \App\Entity\Intervenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeLogPlanning', [$logPlanning]);
return parent::removeLogPlanning($logPlanning);
}
/**
* {@inheritDoc}
*/
public function getLogCancelsIntervenantOld(): \Doctrine\Common\Collections\ArrayCollection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLogCancelsIntervenantOld', []);
return parent::getLogCancelsIntervenantOld();
}
/**
* {@inheritDoc}
*/
public function setLogCancelsIntervenantOld(\Doctrine\Common\Collections\ArrayCollection $logCancelsIntervenantOld): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLogCancelsIntervenantOld', [$logCancelsIntervenantOld]);
parent::setLogCancelsIntervenantOld($logCancelsIntervenantOld);
}
/**
* {@inheritDoc}
*/
public function getLogCancelsIntervenantNew(): \Doctrine\Common\Collections\ArrayCollection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLogCancelsIntervenantNew', []);
return parent::getLogCancelsIntervenantNew();
}
/**
* {@inheritDoc}
*/
public function setLogCancelsIntervenantNew(\Doctrine\Common\Collections\ArrayCollection $logCancelsIntervenantNew): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLogCancelsIntervenantNew', [$logCancelsIntervenantNew]);
parent::setLogCancelsIntervenantNew($logCancelsIntervenantNew);
}
/**
* {@inheritDoc}
*/
public function getId(): ?int
{
if ($this->__isInitialized__ === false) {
return (int) parent::getId();
}
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
return parent::getId();
}
/**
* {@inheritDoc}
*/
public function getFirstname(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFirstname', []);
return parent::getFirstname();
}
/**
* {@inheritDoc}
*/
public function getFullname(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFullname', []);
return parent::getFullname();
}
/**
* {@inheritDoc}
*/
public function setFirstname(?string $firstname): \App\Entity\AbstractPerson
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFirstname', [$firstname]);
return parent::setFirstname($firstname);
}
/**
* {@inheritDoc}
*/
public function getLastname(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastname', []);
return parent::getLastname();
}
/**
* {@inheritDoc}
*/
public function setLastname(?string $lastname): \App\Entity\AbstractPerson
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastname', [$lastname]);
return parent::setLastname($lastname);
}
/**
* {@inheritDoc}
*/
public function getBirthday()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getBirthday', []);
return parent::getBirthday();
}
/**
* {@inheritDoc}
*/
public function setBirthday($birthday): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setBirthday', [$birthday]);
parent::setBirthday($birthday);
}
/**
* {@inheritDoc}
*/
public function getDeathday()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDeathday', []);
return parent::getDeathday();
}
/**
* {@inheritDoc}
*/
public function setDeathday($deathday): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDeathday', [$deathday]);
parent::setDeathday($deathday);
}
/**
* {@inheritDoc}
*/
public function getGender()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getGender', []);
return parent::getGender();
}
/**
* {@inheritDoc}
*/
public function setGender($gender): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setGender', [$gender]);
parent::setGender($gender);
}
/**
* {@inheritDoc}
*/
public function getEmail()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getEmail', []);
return parent::getEmail();
}
/**
* {@inheritDoc}
*/
public function setEmail($email): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setEmail', [$email]);
parent::setEmail($email);
}
/**
* {@inheritDoc}
*/
public function getPhone()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPhone', []);
return parent::getPhone();
}
/**
* {@inheritDoc}
*/
public function setPhone($phone): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPhone', [$phone]);
parent::setPhone($phone);
}
/**
* {@inheritDoc}
*/
public function getComments()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getComments', []);
return parent::getComments();
}
/**
* {@inheritDoc}
*/
public function setComments($comments): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setComments', [$comments]);
parent::setComments($comments);
}
/**
* {@inheritDoc}
*/
public function getAddress()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAddress', []);
return parent::getAddress();
}
/**
* {@inheritDoc}
*/
public function setAddress($address): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setAddress', [$address]);
parent::setAddress($address);
}
/**
* {@inheritDoc}
*/
public function getPhoneGcm()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPhoneGcm', []);
return parent::getPhoneGcm();
}
/**
* {@inheritDoc}
*/
public function setPhoneGcm($phoneGcm): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPhoneGcm', [$phoneGcm]);
parent::setPhoneGcm($phoneGcm);
}
/**
* {@inheritDoc}
*/
public function getNomJeuneFille()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNomJeuneFille', []);
return parent::getNomJeuneFille();
}
/**
* {@inheritDoc}
*/
public function setNomJeuneFille($nomJeuneFille): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNomJeuneFille', [$nomJeuneFille]);
parent::setNomJeuneFille($nomJeuneFille);
}
}