init without trunk

This commit is contained in:
Kevin Adametz 2020-07-09 12:49:32 +02:00
parent ed24ac4994
commit bb809e7233
14652 changed files with 177862 additions and 94817 deletions

View file

@ -0,0 +1,719 @@
<?php
namespace Proxies\__CG__\AppBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class FewoLodging extends \AppBundle\Entity\FewoLodging 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" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'group', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'type', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'description', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'equipment', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'adress1', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'adress2', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'zipCode', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'city', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'maximumPersons', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'maximumAdults', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'maximumChilds', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'deposit', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'prices', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'images', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'reservations', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'calendarVisible', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'choosableSeasons', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'page'];
}
return ['__isInitialized__', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'group', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'type', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'description', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'equipment', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'adress1', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'adress2', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'zipCode', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'city', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'maximumPersons', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'maximumAdults', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'maximumChilds', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'deposit', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'prices', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'images', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'reservations', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'calendarVisible', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'choosableSeasons', '' . "\0" . 'AppBundle\\Entity\\FewoLodging' . "\0" . 'page'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (FewoLodging $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 getChoosableSeasons()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getChoosableSeasons', []);
return parent::getChoosableSeasons();
}
/**
* {@inheritDoc}
*/
public function setChoosableSeasons($choosableSeasons)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setChoosableSeasons', [$choosableSeasons]);
return parent::setChoosableSeasons($choosableSeasons);
}
/**
* {@inheritDoc}
*/
public function getSeasons()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getSeasons', []);
return parent::getSeasons();
}
/**
* {@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 setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function setDescription($description)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDescription', [$description]);
return parent::setDescription($description);
}
/**
* {@inheritDoc}
*/
public function getDescription()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDescription', []);
return parent::getDescription();
}
/**
* {@inheritDoc}
*/
public function setEquipment($equipment)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setEquipment', [$equipment]);
return parent::setEquipment($equipment);
}
/**
* {@inheritDoc}
*/
public function getEquipment()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getEquipment', []);
return parent::getEquipment();
}
/**
* {@inheritDoc}
*/
public function setAdress1($adress1)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setAdress1', [$adress1]);
return parent::setAdress1($adress1);
}
/**
* {@inheritDoc}
*/
public function getAdress1()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAdress1', []);
return parent::getAdress1();
}
/**
* {@inheritDoc}
*/
public function setAdress2($adress2)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setAdress2', [$adress2]);
return parent::setAdress2($adress2);
}
/**
* {@inheritDoc}
*/
public function getAdress2()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAdress2', []);
return parent::getAdress2();
}
/**
* {@inheritDoc}
*/
public function setZipCode($zipCode)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setZipCode', [$zipCode]);
return parent::setZipCode($zipCode);
}
/**
* {@inheritDoc}
*/
public function getZipCode()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getZipCode', []);
return parent::getZipCode();
}
/**
* {@inheritDoc}
*/
public function setCity($city)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCity', [$city]);
return parent::setCity($city);
}
/**
* {@inheritDoc}
*/
public function getCity()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCity', []);
return parent::getCity();
}
/**
* {@inheritDoc}
*/
public function setMaximumPersons($maximumPersons)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMaximumPersons', [$maximumPersons]);
return parent::setMaximumPersons($maximumPersons);
}
/**
* {@inheritDoc}
*/
public function getMaximumPersons()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMaximumPersons', []);
return parent::getMaximumPersons();
}
/**
* {@inheritDoc}
*/
public function setMaximumAdults($maximumAdults)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMaximumAdults', [$maximumAdults]);
return parent::setMaximumAdults($maximumAdults);
}
/**
* {@inheritDoc}
*/
public function getMaximumAdults()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMaximumAdults', []);
return parent::getMaximumAdults();
}
/**
* {@inheritDoc}
*/
public function setMaximumChilds($maximumChilds)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMaximumChilds', [$maximumChilds]);
return parent::setMaximumChilds($maximumChilds);
}
/**
* {@inheritDoc}
*/
public function getMaximumChilds()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMaximumChilds', []);
return parent::getMaximumChilds();
}
/**
* {@inheritDoc}
*/
public function setDeposit($deposit)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDeposit', [$deposit]);
return parent::setDeposit($deposit);
}
/**
* {@inheritDoc}
*/
public function getDeposit()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDeposit', []);
return parent::getDeposit();
}
/**
* {@inheritDoc}
*/
public function setCalendarVisible($calendarVisible)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCalendarVisible', [$calendarVisible]);
return parent::setCalendarVisible($calendarVisible);
}
/**
* {@inheritDoc}
*/
public function getCalendarVisible()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCalendarVisible', []);
return parent::getCalendarVisible();
}
/**
* {@inheritDoc}
*/
public function setGroup(\AppBundle\Entity\FewoLodgingGroup $group = NULL)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setGroup', [$group]);
return parent::setGroup($group);
}
/**
* {@inheritDoc}
*/
public function getGroup()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getGroup', []);
return parent::getGroup();
}
/**
* {@inheritDoc}
*/
public function setType(\AppBundle\Entity\FewoLodgingType $type = NULL)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setType', [$type]);
return parent::setType($type);
}
/**
* {@inheritDoc}
*/
public function getType()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getType', []);
return parent::getType();
}
/**
* {@inheritDoc}
*/
public function addPrice(\AppBundle\Entity\FewoPrice $price)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addPrice', [$price]);
return parent::addPrice($price);
}
/**
* {@inheritDoc}
*/
public function removePrice(\AppBundle\Entity\FewoPrice $price)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removePrice', [$price]);
return parent::removePrice($price);
}
/**
* {@inheritDoc}
*/
public function getPrices()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPrices', []);
return parent::getPrices();
}
/**
* {@inheritDoc}
*/
public function setPrices($prices)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPrices', [$prices]);
return parent::setPrices($prices);
}
/**
* {@inheritDoc}
*/
public function getPricesFilter($dateFrom, $dateTo)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPricesFilter', [$dateFrom, $dateTo]);
return parent::getPricesFilter($dateFrom, $dateTo);
}
/**
* {@inheritDoc}
*/
public function getPricesByFromDateFilter($fromDate)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPricesByFromDateFilter', [$fromDate]);
return parent::getPricesByFromDateFilter($fromDate);
}
/**
* {@inheritDoc}
*/
public function getPricesFilterNow()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPricesFilterNow', []);
return parent::getPricesFilterNow();
}
/**
* {@inheritDoc}
*/
public function addImage(\AppBundle\Entity\FewoLodgingImage $image)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addImage', [$image]);
return parent::addImage($image);
}
/**
* {@inheritDoc}
*/
public function removeImage(\AppBundle\Entity\FewoLodgingImage $image)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeImage', [$image]);
return parent::removeImage($image);
}
/**
* {@inheritDoc}
*/
public function getImages()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getImages', []);
return parent::getImages();
}
/**
* {@inheritDoc}
*/
public function addReservation(\AppBundle\Entity\FewoReservation $reservation)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addReservation', [$reservation]);
return parent::addReservation($reservation);
}
/**
* {@inheritDoc}
*/
public function removeReservation(\AppBundle\Entity\FewoReservation $reservation)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeReservation', [$reservation]);
return parent::removeReservation($reservation);
}
/**
* {@inheritDoc}
*/
public function getReservations()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getReservations', []);
return parent::getReservations();
}
/**
* {@inheritDoc}
*/
public function getReservationsFilter($dateFrom, $dateTo)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getReservationsFilter', [$dateFrom, $dateTo]);
return parent::getReservationsFilter($dateFrom, $dateTo);
}
/**
* {@inheritDoc}
*/
public function setPage(\AppBundle\Entity\Page $page = NULL)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPage', [$page]);
return parent::setPage($page);
}
/**
* {@inheritDoc}
*/
public function getPage()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPage', []);
return parent::getPage();
}
/**
* {@inheritDoc}
*/
public function __toString()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
return parent::__toString();
}
}

View file

@ -0,0 +1,268 @@
<?php
namespace Proxies\__CG__\AppBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class FewoLodgingGroup extends \AppBundle\Entity\FewoLodgingGroup 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" . 'AppBundle\\Entity\\FewoLodgingGroup' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\FewoLodgingGroup' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\FewoLodgingGroup' . "\0" . 'lodgings', '' . "\0" . 'AppBundle\\Entity\\FewoLodgingGroup' . "\0" . 'images'];
}
return ['__isInitialized__', '' . "\0" . 'AppBundle\\Entity\\FewoLodgingGroup' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\FewoLodgingGroup' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\FewoLodgingGroup' . "\0" . 'lodgings', '' . "\0" . 'AppBundle\\Entity\\FewoLodgingGroup' . "\0" . 'images'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (FewoLodgingGroup $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 getLodgings()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLodgings', []);
return parent::getLodgings();
}
/**
* {@inheritDoc}
*/
public function addImage(\AppBundle\Entity\FewoLodgingGroupImage $image)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addImage', [$image]);
return parent::addImage($image);
}
/**
* {@inheritDoc}
*/
public function removeImage(\AppBundle\Entity\FewoLodgingGroupImage $image)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeImage', [$image]);
return parent::removeImage($image);
}
/**
* {@inheritDoc}
*/
public function getImages()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getImages', []);
return parent::getImages();
}
/**
* {@inheritDoc}
*/
public function setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function __toString()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
return parent::__toString();
}
}

View file

@ -0,0 +1,224 @@
<?php
namespace Proxies\__CG__\AppBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class FewoLodgingType extends \AppBundle\Entity\FewoLodgingType 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" . 'AppBundle\\Entity\\FewoLodgingType' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\FewoLodgingType' . "\0" . 'name'];
}
return ['__isInitialized__', '' . "\0" . 'AppBundle\\Entity\\FewoLodgingType' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\FewoLodgingType' . "\0" . 'name'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (FewoLodgingType $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 setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function __toString()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
return parent::__toString();
}
}

View file

@ -0,0 +1,367 @@
<?php
namespace Proxies\__CG__\AppBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class FewoSeason extends \AppBundle\Entity\FewoSeason 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" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'prices', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'fromDate', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'toDate', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'minimumStay', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'description', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'onlyWeekday'];
}
return ['__isInitialized__', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'prices', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'fromDate', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'toDate', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'minimumStay', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'description', '' . "\0" . 'AppBundle\\Entity\\FewoSeason' . "\0" . 'onlyWeekday'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (FewoSeason $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 setFromDate($fromDate)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFromDate', [$fromDate]);
return parent::setFromDate($fromDate);
}
/**
* {@inheritDoc}
*/
public function getFromDate()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFromDate', []);
return parent::getFromDate();
}
/**
* {@inheritDoc}
*/
public function setToDate($toDate)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setToDate', [$toDate]);
return parent::setToDate($toDate);
}
/**
* {@inheritDoc}
*/
public function getToDate()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getToDate', []);
return parent::getToDate();
}
/**
* {@inheritDoc}
*/
public function setMinimumStay($minimumStay)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMinimumStay', [$minimumStay]);
return parent::setMinimumStay($minimumStay);
}
/**
* {@inheritDoc}
*/
public function getMinimumStay()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMinimumStay', []);
return parent::getMinimumStay();
}
/**
* {@inheritDoc}
*/
public function setDescription($description)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDescription', [$description]);
return parent::setDescription($description);
}
/**
* {@inheritDoc}
*/
public function getDescription()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDescription', []);
return parent::getDescription();
}
/**
* {@inheritDoc}
*/
public function addPrice(\AppBundle\Entity\FewoPrice $price)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addPrice', [$price]);
return parent::addPrice($price);
}
/**
* {@inheritDoc}
*/
public function removePrice(\AppBundle\Entity\FewoPrice $price)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removePrice', [$price]);
return parent::removePrice($price);
}
/**
* {@inheritDoc}
*/
public function getPrices()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPrices', []);
return parent::getPrices();
}
/**
* {@inheritDoc}
*/
public function setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function __toString()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
return parent::__toString();
}
/**
* {@inheritDoc}
*/
public function setOnlyWeekday($onlyWeekday)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setOnlyWeekday', [$onlyWeekday]);
return parent::setOnlyWeekday($onlyWeekday);
}
/**
* {@inheritDoc}
*/
public function getOnlyWeekday()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getOnlyWeekday', []);
return parent::getOnlyWeekday();
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,235 @@
<?php
namespace Proxies\__CG__\AppBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class TravelArrivalPoint extends \AppBundle\Entity\TravelArrivalPoint 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" . 'AppBundle\\Entity\\TravelArrivalPoint' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelArrivalPoint' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\TravelArrivalPoint' . "\0" . 'travelCountry', '' . "\0" . 'AppBundle\\Entity\\TravelArrivalPoint' . "\0" . 'departures', '__initializer__', '__areDeparturesInitialized__'];
}
return ['__isInitialized__', '' . "\0" . 'AppBundle\\Entity\\TravelArrivalPoint' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelArrivalPoint' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\TravelArrivalPoint' . "\0" . 'travelCountry', '' . "\0" . 'AppBundle\\Entity\\TravelArrivalPoint' . "\0" . 'departures', '__initializer__', '__areDeparturesInitialized__'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (TravelArrivalPoint $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 setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@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 setTravelCountry(\AppBundle\Entity\TravelCountry $travelCountry = NULL)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setTravelCountry', [$travelCountry]);
return parent::setTravelCountry($travelCountry);
}
/**
* {@inheritDoc}
*/
public function getTravelCountry()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTravelCountry', []);
return parent::getTravelCountry();
}
}

View file

@ -0,0 +1,235 @@
<?php
namespace Proxies\__CG__\AppBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class TravelCategory extends \AppBundle\Entity\TravelCategory 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" . 'AppBundle\\Entity\\TravelCategory' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelCategory' . "\0" . 'conversionCode', '' . "\0" . 'AppBundle\\Entity\\TravelCategory' . "\0" . 'id'];
}
return ['__isInitialized__', '' . "\0" . 'AppBundle\\Entity\\TravelCategory' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelCategory' . "\0" . 'conversionCode', '' . "\0" . 'AppBundle\\Entity\\TravelCategory' . "\0" . 'id'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (TravelCategory $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 setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function setConversionCode($conversionCode)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setConversionCode', [$conversionCode]);
return parent::setConversionCode($conversionCode);
}
/**
* {@inheritDoc}
*/
public function getConversionCode()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getConversionCode', []);
return parent::getConversionCode();
}
/**
* {@inheritDoc}
*/
public function getId()
{
if ($this->__isInitialized__ === false) {
return (int) parent::getId();
}
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
return parent::getId();
}
}

View file

@ -0,0 +1,466 @@
<?php
namespace Proxies\__CG__\AppBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class TravelCountry extends \AppBundle\Entity\TravelCountry 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" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'slug', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'text_before', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'text_after', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'htmlInformation', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'entryRequirements', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'crmId', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'active_frontend', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'feedbackPage', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'programs', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'destinations'];
}
return ['__isInitialized__', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'slug', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'text_before', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'text_after', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'htmlInformation', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'entryRequirements', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'id', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'crmId', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'active_frontend', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'feedbackPage', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'programs', '' . "\0" . 'AppBundle\\Entity\\TravelCountry' . "\0" . 'destinations'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (TravelCountry $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 setCrmId($crmId)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCrmId', [$crmId]);
return parent::setCrmId($crmId);
}
/**
* {@inheritDoc}
*/
public function getCrmId()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCrmId', []);
return parent::getCrmId();
}
/**
* {@inheritDoc}
*/
public function setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function setSlug($slug)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setSlug', [$slug]);
return parent::setSlug($slug);
}
/**
* {@inheritDoc}
*/
public function getSlug()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getSlug', []);
return parent::getSlug();
}
/**
* {@inheritDoc}
*/
public function setTextBefore($text_before)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setTextBefore', [$text_before]);
return parent::setTextBefore($text_before);
}
/**
* {@inheritDoc}
*/
public function getTextBefore()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTextBefore', []);
return parent::getTextBefore();
}
/**
* {@inheritDoc}
*/
public function setTextAfter($text_after)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setTextAfter', [$text_after]);
return parent::setTextAfter($text_after);
}
/**
* {@inheritDoc}
*/
public function getTextAfter()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTextAfter', []);
return parent::getTextAfter();
}
/**
* {@inheritDoc}
*/
public function setHtmlInformation($htmlInformation)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setHtmlInformation', [$htmlInformation]);
return parent::setHtmlInformation($htmlInformation);
}
/**
* {@inheritDoc}
*/
public function getHtmlInformation()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getHtmlInformation', []);
return parent::getHtmlInformation();
}
/**
* {@inheritDoc}
*/
public function setEntryRequirements($entryRequirements)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setEntryRequirements', [$entryRequirements]);
return parent::setEntryRequirements($entryRequirements);
}
/**
* {@inheritDoc}
*/
public function getEntryRequirements()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getEntryRequirements', []);
return parent::getEntryRequirements();
}
/**
* {@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 setActiveFrontend($active_frontend)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setActiveFrontend', [$active_frontend]);
return parent::setActiveFrontend($active_frontend);
}
/**
* {@inheritDoc}
*/
public function getActiveFrontend()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getActiveFrontend', []);
return parent::getActiveFrontend();
}
/**
* {@inheritDoc}
*/
public function setFeedbackPage(\AppBundle\Entity\Page $feedbackPage = NULL)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFeedbackPage', [$feedbackPage]);
return parent::setFeedbackPage($feedbackPage);
}
/**
* {@inheritDoc}
*/
public function getFeedbackPage()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFeedbackPage', []);
return parent::getFeedbackPage();
}
/**
* {@inheritDoc}
*/
public function addProgram(\AppBundle\Entity\TravelProgram $program)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addProgram', [$program]);
return parent::addProgram($program);
}
/**
* {@inheritDoc}
*/
public function removeProgram(\AppBundle\Entity\TravelProgram $program)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeProgram', [$program]);
return parent::removeProgram($program);
}
/**
* {@inheritDoc}
*/
public function getPrograms()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPrograms', []);
return parent::getPrograms();
}
/**
* {@inheritDoc}
*/
public function __toString()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
return parent::__toString();
}
/**
* {@inheritDoc}
*/
public function addDestination(\AppBundle\Entity\TravelDestination $destination)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addDestination', [$destination]);
return parent::addDestination($destination);
}
/**
* {@inheritDoc}
*/
public function removeDestination(\AppBundle\Entity\TravelDestination $destination)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removeDestination', [$destination]);
return parent::removeDestination($destination);
}
/**
* {@inheritDoc}
*/
public function getDestinations()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDestinations', []);
return parent::getDestinations();
}
}

View file

@ -0,0 +1,235 @@
<?php
namespace Proxies\__CG__\AppBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class TravelGeneralNote extends \AppBundle\Entity\TravelGeneralNote 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" . 'AppBundle\\Entity\\TravelGeneralNote' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelGeneralNote' . "\0" . 'text', '' . "\0" . 'AppBundle\\Entity\\TravelGeneralNote' . "\0" . 'id'];
}
return ['__isInitialized__', '' . "\0" . 'AppBundle\\Entity\\TravelGeneralNote' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelGeneralNote' . "\0" . 'text', '' . "\0" . 'AppBundle\\Entity\\TravelGeneralNote' . "\0" . 'id'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (TravelGeneralNote $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 setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function setText($text)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setText', [$text]);
return parent::setText($text);
}
/**
* {@inheritDoc}
*/
public function getText()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getText', []);
return parent::getText();
}
/**
* {@inheritDoc}
*/
public function getId()
{
if ($this->__isInitialized__ === false) {
return (int) parent::getId();
}
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
return parent::getId();
}
}

View file

@ -0,0 +1,367 @@
<?php
namespace Proxies\__CG__\AppBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class TravelInsurance extends \AppBundle\Entity\TravelInsurance 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" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'internalName', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'included', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'insuranceName', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'text', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'insurancePdf', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'id', 'prices'];
}
return ['__isInitialized__', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'internalName', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'included', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'insuranceName', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'text', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'insurancePdf', '' . "\0" . 'AppBundle\\Entity\\TravelInsurance' . "\0" . 'id', 'prices'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (TravelInsurance $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 setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function setInternalName($internalName)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setInternalName', [$internalName]);
return parent::setInternalName($internalName);
}
/**
* {@inheritDoc}
*/
public function getInternalName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getInternalName', []);
return parent::getInternalName();
}
/**
* {@inheritDoc}
*/
public function setInsuranceName($insuranceName)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setInsuranceName', [$insuranceName]);
return parent::setInsuranceName($insuranceName);
}
/**
* {@inheritDoc}
*/
public function getInsuranceName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getInsuranceName', []);
return parent::getInsuranceName();
}
/**
* {@inheritDoc}
*/
public function setText($text)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setText', [$text]);
return parent::setText($text);
}
/**
* {@inheritDoc}
*/
public function getText()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getText', []);
return parent::getText();
}
/**
* {@inheritDoc}
*/
public function setInsurancePdf($insurancePdf)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setInsurancePdf', [$insurancePdf]);
return parent::setInsurancePdf($insurancePdf);
}
/**
* {@inheritDoc}
*/
public function getInsurancePdf()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getInsurancePdf', []);
return parent::getInsurancePdf();
}
/**
* {@inheritDoc}
*/
public function setIncluded($included)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIncluded', [$included]);
return parent::setIncluded($included);
}
/**
* {@inheritDoc}
*/
public function getIncluded()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getIncluded', []);
return parent::getIncluded();
}
/**
* {@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 addPrice(\AppBundle\Entity\TravelInsurancePrice $price)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'addPrice', [$price]);
return parent::addPrice($price);
}
/**
* {@inheritDoc}
*/
public function removePrice(\AppBundle\Entity\TravelInsurancePrice $price)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'removePrice', [$price]);
return parent::removePrice($price);
}
/**
* {@inheritDoc}
*/
public function getPrices()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPrices', []);
return parent::getPrices();
}
/**
* {@inheritDoc}
*/
public function __toString()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__toString', []);
return parent::__toString();
}
}

View file

@ -0,0 +1,378 @@
<?php
namespace Proxies\__CG__\AppBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class TravelOrganizer extends \AppBundle\Entity\TravelOrganizer 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" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'insolvency', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'legalRights', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'rulesUpdated', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'fileName', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'formArb', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'fileFormPage', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'cmsId', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'id'];
}
return ['__isInitialized__', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'name', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'insolvency', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'legalRights', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'rulesUpdated', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'fileName', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'formArb', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'fileFormPage', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'cmsId', '' . "\0" . 'AppBundle\\Entity\\TravelOrganizer' . "\0" . 'id'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (TravelOrganizer $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 setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function setInsolvency($insolvency)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setInsolvency', [$insolvency]);
return parent::setInsolvency($insolvency);
}
/**
* {@inheritDoc}
*/
public function getInsolvency()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getInsolvency', []);
return parent::getInsolvency();
}
/**
* {@inheritDoc}
*/
public function setLegalRights($legalRights)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLegalRights', [$legalRights]);
return parent::setLegalRights($legalRights);
}
/**
* {@inheritDoc}
*/
public function getLegalRights()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLegalRights', []);
return parent::getLegalRights();
}
/**
* {@inheritDoc}
*/
public function setRulesUpdated($rulesUpdated)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setRulesUpdated', [$rulesUpdated]);
return parent::setRulesUpdated($rulesUpdated);
}
/**
* {@inheritDoc}
*/
public function getRulesUpdated()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRulesUpdated', []);
return parent::getRulesUpdated();
}
/**
* {@inheritDoc}
*/
public function getRulesUpdatedTime()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRulesUpdatedTime', []);
return parent::getRulesUpdatedTime();
}
/**
* {@inheritDoc}
*/
public function setFileName($fileName)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFileName', [$fileName]);
return parent::setFileName($fileName);
}
/**
* {@inheritDoc}
*/
public function getFileName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFileName', []);
return parent::getFileName();
}
/**
* {@inheritDoc}
*/
public function setFormArb($formArb)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFormArb', [$formArb]);
return parent::setFormArb($formArb);
}
/**
* {@inheritDoc}
*/
public function getFormArb()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFormArb', []);
return parent::getFormArb();
}
/**
* {@inheritDoc}
*/
public function setFileFormPage($fileFormPage)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFileFormPage', [$fileFormPage]);
return parent::setFileFormPage($fileFormPage);
}
/**
* {@inheritDoc}
*/
public function getFileFormPage()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFileFormPage', []);
return parent::getFileFormPage();
}
/**
* {@inheritDoc}
*/
public function setCmsId($cmsId)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCmsId', [$cmsId]);
return parent::setCmsId($cmsId);
}
/**
* {@inheritDoc}
*/
public function getCmsId()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCmsId', []);
return parent::getCmsId();
}
/**
* {@inheritDoc}
*/
public function getId()
{
if ($this->__isInitialized__ === false) {
return (int) parent::getId();
}
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
return parent::getId();
}
}

File diff suppressed because it is too large Load diff