/app/cache/prod/doctrine/orm/Proxies/__CG__PiDevClientBundleEntityService.php
https://gitlab.com/galaxy-pidev/AllForDealWeb · PHP · 411 lines · 180 code · 96 blank · 135 comment · 27 complexity · 035e968c4e638e4c1874f645dee908fe MD5 · raw file
- <?php
- namespace Proxies\__CG__\PiDev\ClientBundle\Entity;
- /**
- * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
- */
- class Service extends \PiDev\ClientBundle\Entity\Service 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 = [];
- /**
- * @param \Closure $initializer
- * @param \Closure $cloner
- */
- public function __construct($initializer = null, $cloner = null)
- {
- $this->__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return ['__isInitialized__', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'id', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'nom', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'Description', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'proprietaire', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'valider', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'estimation', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'Categorie', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'Mail', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'Telephone', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'Adresse'];
- }
- return ['__isInitialized__', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'id', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'nom', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'Description', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'proprietaire', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'valider', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'estimation', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'Categorie', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'Mail', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'Telephone', '' . "\0" . 'PiDev\\ClientBundle\\Entity\\Service' . "\0" . 'Adresse'];
- }
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (Service $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;
- }
- }
- };
- }
- }
- /**
- *
- */
- 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 getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
- return parent::getId();
- }
- /**
- * {@inheritDoc}
- */
- public function getNom()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNom', []);
- return parent::getNom();
- }
- /**
- * {@inheritDoc}
- */
- public function getDescription()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDescription', []);
- return parent::getDescription();
- }
- /**
- * {@inheritDoc}
- */
- public function getProprietaire()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getProprietaire', []);
- return parent::getProprietaire();
- }
- /**
- * {@inheritDoc}
- */
- public function getValider()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValider', []);
- return parent::getValider();
- }
- /**
- * {@inheritDoc}
- */
- public function getEstimation()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEstimation', []);
- return parent::getEstimation();
- }
- /**
- * {@inheritDoc}
- */
- public function setId($id)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setId', [$id]);
- return parent::setId($id);
- }
- /**
- * {@inheritDoc}
- */
- public function setNom($nom)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNom', [$nom]);
- return parent::setNom($nom);
- }
- /**
- * {@inheritDoc}
- */
- public function setDescription($Description)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDescription', [$Description]);
- return parent::setDescription($Description);
- }
- /**
- * {@inheritDoc}
- */
- public function setProprietaire($proprietaire)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setProprietaire', [$proprietaire]);
- return parent::setProprietaire($proprietaire);
- }
- /**
- * {@inheritDoc}
- */
- public function setValider($valider)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValider', [$valider]);
- return parent::setValider($valider);
- }
- /**
- * {@inheritDoc}
- */
- public function setEstimation($estimation)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setEstimation', [$estimation]);
- return parent::setEstimation($estimation);
- }
- /**
- * {@inheritDoc}
- */
- public function getCategorie()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCategorie', []);
- return parent::getCategorie();
- }
- /**
- * {@inheritDoc}
- */
- public function setCategorie($Categorie)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCategorie', [$Categorie]);
- return parent::setCategorie($Categorie);
- }
- /**
- * {@inheritDoc}
- */
- public function getMail()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMail', []);
- return parent::getMail();
- }
- /**
- * {@inheritDoc}
- */
- public function getTelephone()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTelephone', []);
- return parent::getTelephone();
- }
- /**
- * {@inheritDoc}
- */
- public function getAdresse()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAdresse', []);
- return parent::getAdresse();
- }
- /**
- * {@inheritDoc}
- */
- public function setMail($Mail)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMail', [$Mail]);
- return parent::setMail($Mail);
- }
- /**
- * {@inheritDoc}
- */
- public function setTelephone($Telephone)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTelephone', [$Telephone]);
- return parent::setTelephone($Telephone);
- }
- /**
- * {@inheritDoc}
- */
- public function setAdresse($Adresse)
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAdresse', [$Adresse]);
- return parent::setAdresse($Adresse);
- }
- /**
- * {@inheritDoc}
- */
- public function __toString()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
- return parent::__toString();
- }
- }