<?php
namespace Proxies\__CG__\App\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class Programme extends \App\Entity\Programme 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__', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'id', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'lots', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'type', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'adresse', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'ville', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'codePostal', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'dateLivraison', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'latitude', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'longitude', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'livraison', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'visuLivraison', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'nom', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'image', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'brochure', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'promoteur', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'planMasse', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'typePlan', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'zoomMap', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'libelleBrochure', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'denonciations', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'demandeSuppression', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'entreprise', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'prescripteur', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'noteGlobale', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'pjs', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'documents', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'infosSuivis'];
}
return ['__isInitialized__', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'id', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'lots', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'type', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'adresse', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'ville', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'codePostal', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'dateLivraison', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'latitude', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'longitude', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'livraison', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'visuLivraison', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'nom', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'image', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'brochure', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'promoteur', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'planMasse', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'typePlan', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'zoomMap', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'libelleBrochure', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'denonciations', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'demandeSuppression', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'entreprise', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'prescripteur', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'noteGlobale', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'pjs', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'documents', '' . "\0" . 'App\\Entity\\Programme' . "\0" . 'infosSuivis'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (Programme $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()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
return parent::__toString();
}
/**
* {@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 getLots(): \Doctrine\Common\Collections\Collection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLots', []);
return parent::getLots();
}
/**
* {@inheritDoc}
*/
public function addLot(\App\Entity\Lot $lot): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addLot', [$lot]);
return parent::addLot($lot);
}
/**
* {@inheritDoc}
*/
public function removeLot(\App\Entity\Lot $lot): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeLot', [$lot]);
return parent::removeLot($lot);
}
/**
* {@inheritDoc}
*/
public function getType(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getType', []);
return parent::getType();
}
/**
* {@inheritDoc}
*/
public function setType(?string $type): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setType', [$type]);
return parent::setType($type);
}
/**
* {@inheritDoc}
*/
public function getAdresse(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAdresse', []);
return parent::getAdresse();
}
/**
* {@inheritDoc}
*/
public function setAdresse(?string $adresse): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setAdresse', [$adresse]);
return parent::setAdresse($adresse);
}
/**
* {@inheritDoc}
*/
public function getVille(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getVille', []);
return parent::getVille();
}
/**
* {@inheritDoc}
*/
public function setVille(?string $ville): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setVille', [$ville]);
return parent::setVille($ville);
}
/**
* {@inheritDoc}
*/
public function getCodePostal(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCodePostal', []);
return parent::getCodePostal();
}
/**
* {@inheritDoc}
*/
public function setCodePostal(?string $codePostal): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCodePostal', [$codePostal]);
return parent::setCodePostal($codePostal);
}
/**
* {@inheritDoc}
*/
public function getDateLivraison(): ?\DateTimeInterface
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDateLivraison', []);
return parent::getDateLivraison();
}
/**
* {@inheritDoc}
*/
public function setDateLivraison(?\DateTimeInterface $dateLivraison): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDateLivraison', [$dateLivraison]);
return parent::setDateLivraison($dateLivraison);
}
/**
* {@inheritDoc}
*/
public function getLatitude(): ?float
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLatitude', []);
return parent::getLatitude();
}
/**
* {@inheritDoc}
*/
public function setLatitude(?float $latitude): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLatitude', [$latitude]);
return parent::setLatitude($latitude);
}
/**
* {@inheritDoc}
*/
public function getLongitude(): ?float
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLongitude', []);
return parent::getLongitude();
}
/**
* {@inheritDoc}
*/
public function setLongitude(?float $longitude): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLongitude', [$longitude]);
return parent::setLongitude($longitude);
}
/**
* {@inheritDoc}
*/
public function getLivraison(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLivraison', []);
return parent::getLivraison();
}
/**
* {@inheritDoc}
*/
public function setLivraison(?string $livraison): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLivraison', [$livraison]);
return parent::setLivraison($livraison);
}
/**
* {@inheritDoc}
*/
public function getVisuLivraison(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getVisuLivraison', []);
return parent::getVisuLivraison();
}
/**
* {@inheritDoc}
*/
public function setVisuLivraison(bool $visuLivraison): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setVisuLivraison', [$visuLivraison]);
return parent::setVisuLivraison($visuLivraison);
}
/**
* {@inheritDoc}
*/
public function getNom(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNom', []);
return parent::getNom();
}
/**
* {@inheritDoc}
*/
public function setNom(?string $nom): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNom', [$nom]);
return parent::setNom($nom);
}
/**
* {@inheritDoc}
*/
public function getImage(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getImage', []);
return parent::getImage();
}
/**
* {@inheritDoc}
*/
public function setImage(?string $image): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setImage', [$image]);
return parent::setImage($image);
}
/**
* {@inheritDoc}
*/
public function getBrochure(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getBrochure', []);
return parent::getBrochure();
}
/**
* {@inheritDoc}
*/
public function setBrochure(?string $brochure): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setBrochure', [$brochure]);
return parent::setBrochure($brochure);
}
/**
* {@inheritDoc}
*/
public function getPromoteur(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPromoteur', []);
return parent::getPromoteur();
}
/**
* {@inheritDoc}
*/
public function setPromoteur(?string $promoteur): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPromoteur', [$promoteur]);
return parent::setPromoteur($promoteur);
}
/**
* {@inheritDoc}
*/
public function getPlanMasse(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPlanMasse', []);
return parent::getPlanMasse();
}
/**
* {@inheritDoc}
*/
public function setPlanMasse(?string $planMasse): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPlanMasse', [$planMasse]);
return parent::setPlanMasse($planMasse);
}
/**
* {@inheritDoc}
*/
public function getLibelleTypePlan()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLibelleTypePlan', []);
return parent::getLibelleTypePlan();
}
/**
* {@inheritDoc}
*/
public function getTypePlan(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTypePlan', []);
return parent::getTypePlan();
}
/**
* {@inheritDoc}
*/
public function setTypePlan(string $typePlan): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setTypePlan', [$typePlan]);
return parent::setTypePlan($typePlan);
}
/**
* {@inheritDoc}
*/
public function getLibelleZoomMap()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLibelleZoomMap', []);
return parent::getLibelleZoomMap();
}
/**
* {@inheritDoc}
*/
public function getZoomMap(): ?float
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getZoomMap', []);
return parent::getZoomMap();
}
/**
* {@inheritDoc}
*/
public function setZoomMap(float $zoomMap): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setZoomMap', [$zoomMap]);
return parent::setZoomMap($zoomMap);
}
/**
* {@inheritDoc}
*/
public function getLibelleBrochure(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLibelleBrochure', []);
return parent::getLibelleBrochure();
}
/**
* {@inheritDoc}
*/
public function setLibelleBrochure(?string $libelleBrochure): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLibelleBrochure', [$libelleBrochure]);
return parent::setLibelleBrochure($libelleBrochure);
}
/**
* {@inheritDoc}
*/
public function getDenonciations(): \Doctrine\Common\Collections\Collection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDenonciations', []);
return parent::getDenonciations();
}
/**
* {@inheritDoc}
*/
public function addDenonciation(\App\Entity\Denonciation $denonciation): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addDenonciation', [$denonciation]);
return parent::addDenonciation($denonciation);
}
/**
* {@inheritDoc}
*/
public function removeDenonciation(\App\Entity\Denonciation $denonciation): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeDenonciation', [$denonciation]);
return parent::removeDenonciation($denonciation);
}
/**
* {@inheritDoc}
*/
public function getDemandeSuppression(): ?\DateTimeInterface
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDemandeSuppression', []);
return parent::getDemandeSuppression();
}
/**
* {@inheritDoc}
*/
public function setDemandeSuppression(?\DateTimeInterface $demandeSuppression): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDemandeSuppression', [$demandeSuppression]);
return parent::setDemandeSuppression($demandeSuppression);
}
/**
* {@inheritDoc}
*/
public function getEntreprise(): ?\App\Entity\Entreprise
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getEntreprise', []);
return parent::getEntreprise();
}
/**
* {@inheritDoc}
*/
public function setEntreprise(?\App\Entity\Entreprise $entreprise): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setEntreprise', [$entreprise]);
return parent::setEntreprise($entreprise);
}
/**
* {@inheritDoc}
*/
public function getPrescripteur(): ?\App\Entity\Utilisateur
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPrescripteur', []);
return parent::getPrescripteur();
}
/**
* {@inheritDoc}
*/
public function setPrescripteur(?\App\Entity\Utilisateur $prescripteur): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPrescripteur', [$prescripteur]);
return parent::setPrescripteur($prescripteur);
}
/**
* {@inheritDoc}
*/
public function getNoteGlobale(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNoteGlobale', []);
return parent::getNoteGlobale();
}
/**
* {@inheritDoc}
*/
public function setNoteGlobale(?string $noteGlobale): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNoteGlobale', [$noteGlobale]);
return parent::setNoteGlobale($noteGlobale);
}
/**
* {@inheritDoc}
*/
public function getPjs(): \Doctrine\Common\Collections\Collection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPjs', []);
return parent::getPjs();
}
/**
* {@inheritDoc}
*/
public function addPj(\App\Entity\PieceJointe $pj): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addPj', [$pj]);
return parent::addPj($pj);
}
/**
* {@inheritDoc}
*/
public function removePj(\App\Entity\PieceJointe $pj): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removePj', [$pj]);
return parent::removePj($pj);
}
/**
* {@inheritDoc}
*/
public function getDocuments(): \Doctrine\Common\Collections\Collection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDocuments', []);
return parent::getDocuments();
}
/**
* {@inheritDoc}
*/
public function addDocument(\App\Entity\Documents $document): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addDocument', [$document]);
return parent::addDocument($document);
}
/**
* {@inheritDoc}
*/
public function removeDocument(\App\Entity\Documents $document): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeDocument', [$document]);
return parent::removeDocument($document);
}
/**
* {@inheritDoc}
*/
public function getInfosSuivis(): \Doctrine\Common\Collections\Collection
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getInfosSuivis', []);
return parent::getInfosSuivis();
}
/**
* {@inheritDoc}
*/
public function addInfosSuivi(\App\Entity\InfosSuivi $infosSuivi): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addInfosSuivi', [$infosSuivi]);
return parent::addInfosSuivi($infosSuivi);
}
/**
* {@inheritDoc}
*/
public function removeInfosSuivi(\App\Entity\InfosSuivi $infosSuivi): \App\Entity\Programme
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeInfosSuivi', [$infosSuivi]);
return parent::removeInfosSuivi($infosSuivi);
}
}