Deprecated : Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 58
Deprecated : Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler
<?php
namespace Proxies\__CG__\App\Entity ;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class Address extends \App\Entity\Address implements \Doctrine\ORM\Proxy\Proxy
{
/**
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
* initialization process and an array of ordered parameters that were passed to that method.
*
* @see \Doctrine\Common\Proxy\Proxy::__setInitializer
*/
public $__initializer__ ;
/**
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
*
* @see \Doctrine\Common\Proxy\Proxy::__setCloner
*/
public $__cloner__ ;
/**
* @var boolean flag indicating if this object was already initialized
*
* @see \Doctrine\Persistence\Proxy::__isInitialized
*/
public $__isInitialized__ = false ;
/**
* @var array<string, null> properties to be lazy loaded, indexed by property name
*/
public static $lazyPropertiesNames = array (
);
/**
* @var array<string, mixed> default values of properties to be lazy loaded, with keys being the property names
*
* @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
*/
public static $lazyPropertiesDefaults = array (
);
public function __construct (? \Closure $initializer = null , ? \Closure $cloner = null )
{
$this -> __initializer__ = $initializer ;
$this -> __cloner__ = $cloner ;
}
/**
*
* @return array
*/
public function __sleep ()
{
if ($this -> __isInitialized__ ) {
return ['__isInitialized__' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'id' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'addressName' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'lastname' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'firstname' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'address' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'address_line1' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'address_line2' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'city' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'zipcode' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'user' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'interenchereAddress' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'country' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'region' , 'createdAt' , 'updatedAt' ];
}
return ['__isInitialized__' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'id' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'addressName' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'lastname' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'firstname' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'address' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'address_line1' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'address_line2' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'city' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'zipcode' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'user' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'interenchereAddress' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'country' , '' . "\0" . 'App\\Entity\\Address' . "\0" . 'region' , 'createdAt' , 'updatedAt' ];
}
/**
*
*/
public function __wakeup ()
{
if ( ! $this -> __isInitialized__ ) {
$this -> __initializer__ = function ( Address $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 validate ( \Symfony\Component\Validator\Context\ExecutionContextInterface $context , mixed $payload ): void
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'validate' , [ $context , $payload ]);
parent :: validate ( $context , $payload );
}
/**
* {@inheritDoc}
*/
public function getId (): ? int
{
if ($this -> __isInitialized__ === false ) {
return (int) parent :: getId ();
}
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getId' , []);
return parent :: getId ();
}
/**
* {@inheritDoc}
*/
public function getAddressName (): ? string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getAddressName' , []);
return parent :: getAddressName ();
}
/**
* {@inheritDoc}
*/
public function setAddressName (? string $addressName ): \App\Entity\Address
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setAddressName' , [ $addressName ]);
return parent :: setAddressName ( $addressName );
}
/**
* {@inheritDoc}
*/
public function getLastname (): ? string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getLastname' , []);
return parent :: getLastname ();
}
/**
* {@inheritDoc}
*/
public function setLastname (? string $lastname ): \App\Entity\Address
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setLastname' , [ $lastname ]);
return parent :: setLastname ( $lastname );
}
/**
* {@inheritDoc}
*/
public function getFirstname (): ? string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getFirstname' , []);
return parent :: getFirstname ();
}
/**
* {@inheritDoc}
*/
public function setFirstname (? string $firstname ): \App\Entity\Address
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setFirstname' , [ $firstname ]);
return parent :: setFirstname ( $firstname );
}
/**
* {@inheritDoc}
*/
public function getAddress (): ? string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getAddress' , []);
return parent :: getAddress ();
}
/**
* {@inheritDoc}
*/
public function setAddress (? string $address ): \App\Entity\Address
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setAddress' , [ $address ]);
return parent :: setAddress ( $address );
}
/**
* {@inheritDoc}
*/
public function getAddressLine1 (): ? string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getAddressLine1' , []);
return parent :: getAddressLine1 ();
}
/**
* {@inheritDoc}
*/
public function setAddressLine1 (? string $address_line1 ): \App\Entity\Address
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setAddressLine1' , [ $address_line1 ]);
return parent :: setAddressLine1 ( $address_line1 );
}
/**
* {@inheritDoc}
*/
public function getAddressLine2 (): ? string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getAddressLine2' , []);
return parent :: getAddressLine2 ();
}
/**
* {@inheritDoc}
*/
public function setAddressLine2 (? string $address_line2 ): \App\Entity\Address
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setAddressLine2' , [ $address_line2 ]);
return parent :: setAddressLine2 ( $address_line2 );
}
/**
* {@inheritDoc}
*/
public function getUser (): ? \App\Entity\User
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getUser' , []);
return parent :: getUser ();
}
/**
* {@inheritDoc}
*/
public function setUser (? \App\Entity\User $user ): \App\Entity\Address
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setUser' , [ $user ]);
return parent :: setUser ( $user );
}
/**
* {@inheritDoc}
*/
public function __toString (): string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , '__toString' , []);
return parent :: __toString ();
}
/**
* {@inheritDoc}
*/
public function getAddressLines (): string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getAddressLines' , []);
return parent :: getAddressLines ();
}
/**
* {@inheritDoc}
*/
public function getCityZipcodeCountry (): string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getCityZipcodeCountry' , []);
return parent :: getCityZipcodeCountry ();
}
/**
* {@inheritDoc}
*/
public function __toJson (): array
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , '__toJson' , []);
return parent :: __toJson ();
}
/**
* {@inheritDoc}
*/
public function getFullname (): string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getFullname' , []);
return parent :: getFullname ();
}
/**
* {@inheritDoc}
*/
public function getInterenchereAddress (): ?array
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getInterenchereAddress' , []);
return parent :: getInterenchereAddress ();
}
/**
* {@inheritDoc}
*/
public function setInterenchereAddress (array $interenchereAddress ): \App\Entity\Address
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setInterenchereAddress' , [ $interenchereAddress ]);
return parent :: setInterenchereAddress ( $interenchereAddress );
}
/**
* {@inheritDoc}
*/
public function getZipcode (): ? string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getZipcode' , []);
return parent :: getZipcode ();
}
/**
* {@inheritDoc}
*/
public function setZipcode (? string $zipcode ): void
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setZipcode' , [ $zipcode ]);
parent :: setZipcode ( $zipcode );
}
/**
* {@inheritDoc}
*/
public function getCountry (): ? \App\Entity\Country
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getCountry' , []);
return parent :: getCountry ();
}
/**
* {@inheritDoc}
*/
public function setCountry (? \App\Entity\Country $country ): \App\Entity\Address
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setCountry' , [ $country ]);
return parent :: setCountry ( $country );
}
/**
* {@inheritDoc}
*/
public function getCity (): ? string
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getCity' , []);
return parent :: getCity ();
}
/**
* {@inheritDoc}
*/
public function setCity (? string $city ): void
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setCity' , [ $city ]);
parent :: setCity ( $city );
}
/**
* {@inheritDoc}
*/
public function isComplete (): bool
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'isComplete' , []);
return parent :: isComplete ();
}
/**
* {@inheritDoc}
*/
public function getRegion (): ? \App\Entity\Region
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getRegion' , []);
return parent :: getRegion ();
}
/**
* {@inheritDoc}
*/
public function setRegion (? \App\Entity\Region $region ): \App\Entity\Address
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setRegion' , [ $region ]);
return parent :: setRegion ( $region );
}
/**
* {@inheritDoc}
*/
public function setCreatedAt ( \DateTime $createdAt )
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setCreatedAt' , [ $createdAt ]);
return parent :: setCreatedAt ( $createdAt );
}
/**
* {@inheritDoc}
*/
public function getCreatedAt ()
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getCreatedAt' , []);
return parent :: getCreatedAt ();
}
/**
* {@inheritDoc}
*/
public function setUpdatedAt ( \DateTime $updatedAt )
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'setUpdatedAt' , [ $updatedAt ]);
return parent :: setUpdatedAt ( $updatedAt );
}
/**
* {@inheritDoc}
*/
public function getUpdatedAt ()
{
$this -> __initializer__ && $this -> __initializer__ -> __invoke ( $this , 'getUpdatedAt' , []);
return parent :: getUpdatedAt ();
}
}