/app/cache/prod/doctrine/orm/Proxies/__CG__TunisiaMallEntityBundleEntityPromotion.php
https://gitlab.com/bofbof93/PISprintWeb · PHP · 364 lines · 164 code · 75 blank · 125 comment · 24 complexity · 56f260b1f714ed31fb7ee6f7afce8f10 MD5 · raw file
- <?php
- namespace Proxies\__CG__\TunisiaMall\EntityBundle\Entity;
- /**
- * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
- */
- class Promotion extends \TunisiaMall\EntityBundle\Entity\Promotion 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\Persistence\Proxy::__setInitializer
- */
- public $__initializer__;
- /**
- * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
- *
- * @see \Doctrine\Common\Persistence\Proxy::__setCloner
- */
- public $__cloner__;
- /**
- * @var boolean flag indicating if this object was already initialized
- *
- * @see \Doctrine\Common\Persistence\Proxy::__isInitialized
- */
- public $__isInitialized__ = false;
- /**
- * @var array properties to be lazy loaded, with keys being the property
- * names and values being their default values
- *
- * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties
- */
- public static $lazyPropertiesDefaults = ['DateDebut' => NULL, 'DateFin' => NULL, 'Tauxderéduction' => NULL, 'Etat' => NULL];
- /**
- * @param \Closure $initializer
- * @param \Closure $cloner
- */
- public function __construct($initializer = null, $cloner = null)
- {
- unset($this->DateDebut, $this->DateFin, $this->Tauxderéduction, $this->Etat);
- $this->__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
- /**
- *
- * @param string $name
- */
- public function __get($name)
- {
- if (array_key_exists($name, $this->__getLazyProperties())) {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__get', [$name]);
- return $this->$name;
- }
- trigger_error(sprintf('Undefined property: %s::$%s', __CLASS__, $name), E_USER_NOTICE);
- }
- /**
- *
- * @param string $name
- * @param mixed $value
- */
- public function __set($name, $value)
- {
- if (array_key_exists($name, $this->__getLazyProperties())) {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__set', [$name, $value]);
- $this->$name = $value;
- return;
- }
- $this->$name = $value;
- }
- /**
- *
- * @param string $name
- * @return boolean
- */
- public function __isset($name)
- {
- if (array_key_exists($name, $this->__getLazyProperties())) {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__isset', [$name]);
- return isset($this->$name);
- }
- return false;
- }
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return ['__isInitialized__', '' . "\0" . 'TunisiaMall\\EntityBundle\\Entity\\Promotion' . "\0" . 'id', 'DateDebut', 'DateFin', 'Tauxderéduction', '' . "\0" . 'TunisiaMall\\EntityBundle\\Entity\\Promotion' . "\0" . 'Image', 'Etat', '' . "\0" . 'TunisiaMall\\EntityBundle\\Entity\\Promotion' . "\0" . 'ResponsableEnseigne'];
- }
- return ['__isInitialized__', '' . "\0" . 'TunisiaMall\\EntityBundle\\Entity\\Promotion' . "\0" . 'id', '' . "\0" . 'TunisiaMall\\EntityBundle\\Entity\\Promotion' . "\0" . 'Image', '' . "\0" . 'TunisiaMall\\EntityBundle\\Entity\\Promotion' . "\0" . 'ResponsableEnseigne'];
- }
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (Promotion $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
- $existingProperties = get_object_vars($proxy);
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
- unset($this->DateDebut, $this->DateFin, $this->Tauxderéduction, $this->Etat);
- }
- }
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
- }
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
- }
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
- /**
- * {@inheritDoc}
- */
- public function getIdPromotion()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIdPromotion', []);
- return parent::getIdPromotion();
- }
- /**
- * {@inheritDoc}
- */
- public function getDateDebut()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDateDebut', []);
- return parent::getDateDebut();
- }
- /**
- * {@inheritDoc}
- */
- public function getDateFin()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDateFin', []);
- return parent::getDateFin();
- }
- /**
- * {@inheritDoc}
- */
- public function getTauxderéduction()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTauxderéduction', []);
- return parent::getTauxderéduction();
- }
- /**
- * {@inheritDoc}
- */
- public function getImage()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getImage', []);
- return parent::getImage();
- }
- /**
- * {@inheritDoc}
- */
- public function getEtat()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEtat', []);
- return parent::getEtat();
- }
- /**
- * {@inheritDoc}
- */
- public function setDateDebut($DateDebut)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDateDebut', [$DateDebut]);
- return parent::setDateDebut($DateDebut);
- }
- /**
- * {@inheritDoc}
- */
- public function setDateFin($DateFin)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDateFin', [$DateFin]);
- return parent::setDateFin($DateFin);
- }
- /**
- * {@inheritDoc}
- */
- public function setTauxderéduction($Tauxderéduction)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTauxderéduction', [$Tauxderéduction]);
- return parent::setTauxderéduction($Tauxderéduction);
- }
- /**
- * {@inheritDoc}
- */
- public function setImage($Image)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setImage', [$Image]);
- return parent::setImage($Image);
- }
- /**
- * {@inheritDoc}
- */
- public function setEtat($Etat)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setEtat', [$Etat]);
- return parent::setEtat($Etat);
- }
- /**
- * {@inheritDoc}
- */
- public function getResponsableEnseigne()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getResponsableEnseigne', []);
- return parent::getResponsableEnseigne();
- }
- /**
- * {@inheritDoc}
- */
- public function setResponsableEnseigne($ResponsableEnseigne)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setResponsableEnseigne', [$ResponsableEnseigne]);
- return parent::setResponsableEnseigne($ResponsableEnseigne);
- }
- }