<?php
namespace Proxies\__CG__\App\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class Manufacturer extends \App\Entity\Manufacturer implements \Doctrine\ORM\Proxy\Proxy
{
/**
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
* initialization process and an array of ordered parameters that were passed to that method.
*
* @see \Doctrine\Common\Proxy\Proxy::__setInitializer
*/
public $__initializer__;
/**
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
*
* @see \Doctrine\Common\Proxy\Proxy::__setCloner
*/
public $__cloner__;
/**
* @var boolean flag indicating if this object was already initialized
*
* @see \Doctrine\Persistence\Proxy::__isInitialized
*/
public $__isInitialized__ = false;
/**
* @var array<string, null> properties to be lazy loaded, indexed by property name
*/
public static $lazyPropertiesNames = array (
);
/**
* @var array<string, mixed> default values of properties to be lazy loaded, with keys being the property names
*
* @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
*/
public static $lazyPropertiesDefaults = array (
);
public function __construct(?\Closure $initializer = null, ?\Closure $cloner = null)
{
$this->__initializer__ = $initializer;
$this->__cloner__ = $cloner;
}
/**
*
* @return array
*/
public function __sleep()
{
if ($this->__isInitialized__) {
return ['__isInitialized__', 'tranlatedEntity', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'id', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'name', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'image', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'dateAdded', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'lastModified', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'status', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'order', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'descriptions', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'countryRestrictions', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'lockedPrice', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'welcome', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'export', 'languageId', 'currentLocale'];
}
return ['__isInitialized__', 'tranlatedEntity', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'id', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'name', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'image', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'dateAdded', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'lastModified', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'status', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'order', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'descriptions', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'countryRestrictions', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'lockedPrice', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'welcome', '' . "\0" . 'App\\Entity\\Manufacturer' . "\0" . 'export', 'languageId', 'currentLocale'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (Manufacturer $proxy) {
$proxy->__setInitializer(null);
$proxy->__setCloner(null);
$existingProperties = get_object_vars($proxy);
foreach ($proxy::$lazyPropertiesDefaults as $property => $defaultValue) {
if ( ! array_key_exists($property, $existingProperties)) {
$proxy->$property = $defaultValue;
}
}
};
}
}
/**
*
*/
public function __clone()
{
$this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
}
/**
* Forces initialization of the proxy
*/
public function __load(): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __isInitialized(): bool
{
return $this->__isInitialized__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitialized($initialized): void
{
$this->__isInitialized__ = $initialized;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitializer(?\Closure $initializer = null): void
{
$this->__initializer__ = $initializer;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __getInitializer(): ?\Closure
{
return $this->__initializer__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setCloner(?\Closure $cloner = null): void
{
$this->__cloner__ = $cloner;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific cloning logic
*/
public function __getCloner(): ?\Closure
{
return $this->__cloner__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
* @deprecated no longer in use - generated code now relies on internal components rather than generated public API
* @static
*/
public function __getLazyProperties(): array
{
return self::$lazyPropertiesDefaults;
}
/**
* {@inheritDoc}
*/
public function getId()
{
if ($this->__isInitialized__ === false) {
return (int) parent::getId();
}
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
return parent::getId();
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function getUrl($lang = NULL)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUrl', [$lang]);
return parent::getUrl($lang);
}
/**
* {@inheritDoc}
*/
public function getLogo()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLogo', []);
return parent::getLogo();
}
/**
* {@inheritDoc}
*/
public function getImage()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getImage', []);
return parent::getImage();
}
/**
* {@inheritDoc}
*/
public function getDateAdded(): \DateTime
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDateAdded', []);
return parent::getDateAdded();
}
/**
* {@inheritDoc}
*/
public function getLastModified(): \DateTime
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastModified', []);
return parent::getLastModified();
}
/**
* {@inheritDoc}
*/
public function getStatus()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getStatus', []);
return parent::getStatus();
}
/**
* {@inheritDoc}
*/
public function getOrder()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrder', []);
return parent::getOrder();
}
/**
* {@inheritDoc}
*/
public function getDescriptions()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDescriptions', []);
return parent::getDescriptions();
}
/**
* {@inheritDoc}
*/
public function getExport(): int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getExport', []);
return parent::getExport();
}
/**
* {@inheritDoc}
*/
public function getCountryRestrictions()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCountryRestrictions', []);
return parent::getCountryRestrictions();
}
/**
* {@inheritDoc}
*/
public function getCountries()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCountries', []);
return parent::getCountries();
}
/**
* {@inheritDoc}
*/
public function getLockedPrice(): ?int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLockedPrice', []);
return parent::getLockedPrice();
}
/**
* {@inheritDoc}
*/
public function getWelcome(): ?int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getWelcome', []);
return parent::getWelcome();
}
/**
* {@inheritDoc}
*/
public function setName($name)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$name]);
return parent::setName($name);
}
/**
* {@inheritDoc}
*/
public function setImage($image)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setImage', [$image]);
return parent::setImage($image);
}
/**
* {@inheritDoc}
*/
public function setDateAdded(\DateTime $dateAdded)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDateAdded', [$dateAdded]);
return parent::setDateAdded($dateAdded);
}
/**
* {@inheritDoc}
*/
public function setLastModified(\DateTime $lastModified)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastModified', [$lastModified]);
return parent::setLastModified($lastModified);
}
/**
* {@inheritDoc}
*/
public function setStatus($status)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setStatus', [$status]);
return parent::setStatus($status);
}
/**
* {@inheritDoc}
*/
public function setOrder($order)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrder', [$order]);
return parent::setOrder($order);
}
/**
* {@inheritDoc}
*/
public function setDescriptions($descriptions): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDescriptions', [$descriptions]);
parent::setDescriptions($descriptions);
}
/**
* {@inheritDoc}
*/
public function setExport(int $export): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setExport', [$export]);
parent::setExport($export);
}
/**
* {@inheritDoc}
*/
public function setCountryRestrictions($countryRestrictions): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCountryRestrictions', [$countryRestrictions]);
parent::setCountryRestrictions($countryRestrictions);
}
/**
* {@inheritDoc}
*/
public function setLockedPrice($lockedPrice): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLockedPrice', [$lockedPrice]);
parent::setLockedPrice($lockedPrice);
}
/**
* {@inheritDoc}
*/
public function setWelcome(int $welcome): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setWelcome', [$welcome]);
parent::setWelcome($welcome);
}
/**
* {@inheritDoc}
*/
public function hasRestrictions()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'hasRestrictions', []);
return parent::hasRestrictions();
}
/**
* {@inheritDoc}
*/
public function hasRestrictionForCountry($country)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'hasRestrictionForCountry', [$country]);
return parent::hasRestrictionForCountry($country);
}
/**
* {@inheritDoc}
*/
public function isAvailableForCountry($country)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'isAvailableForCountry', [$country]);
return parent::isAvailableForCountry($country);
}
/**
* {@inheritDoc}
*/
public function getManufacturerDescription($lang = 'fr'): ?\App\Entity\ManufacturerDescription
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getManufacturerDescription', [$lang]);
return parent::getManufacturerDescription($lang);
}
/**
* {@inheritDoc}
*/
public function toArray(): array
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'toArray', []);
return parent::toArray();
}
/**
* {@inheritDoc}
*/
public function isActive()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'isActive', []);
return parent::isActive();
}
/**
* {@inheritDoc}
*/
public function hasWelcomeDiscount()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'hasWelcomeDiscount', []);
return parent::hasWelcomeDiscount();
}
/**
* {@inheritDoc}
*/
public function getLanguageId()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLanguageId', []);
return parent::getLanguageId();
}
/**
* {@inheritDoc}
*/
public function setLanguageId($languageId)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLanguageId', [$languageId]);
return parent::setLanguageId($languageId);
}
/**
* {@inheritDoc}
*/
public function setCurrentLocale($locale)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCurrentLocale', [$locale]);
return parent::setCurrentLocale($locale);
}
/**
* {@inheritDoc}
*/
public function translate($languageCode = 'fr')
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'translate', [$languageCode]);
return parent::translate($languageCode);
}
/**
* {@inheritDoc}
*/
public function __call($method, $arguments)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__call', [$method, $arguments]);
return parent::__call($method, $arguments);
}
}