var/cache/dev/doctrine/orm/Proxies/__CG__EccubeEntityMember.php line 9

Open in your IDE?
  1. <?php
  2. namespace Proxies\__CG__\Eccube\Entity;
  3. /**
  4.  * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
  5.  */
  6. class Member extends \Eccube\Entity\Member implements \Doctrine\ORM\Proxy\Proxy
  7. {
  8.     /**
  9.      * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
  10.      *      three parameters, being respectively the proxy object to be initialized, the method that triggered the
  11.      *      initialization process and an array of ordered parameters that were passed to that method.
  12.      *
  13.      * @see \Doctrine\Common\Proxy\Proxy::__setInitializer
  14.      */
  15.     public $__initializer__;
  16.     /**
  17.      * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
  18.      *
  19.      * @see \Doctrine\Common\Proxy\Proxy::__setCloner
  20.      */
  21.     public $__cloner__;
  22.     /**
  23.      * @var boolean flag indicating if this object was already initialized
  24.      *
  25.      * @see \Doctrine\Persistence\Proxy::__isInitialized
  26.      */
  27.     public $__isInitialized__ false;
  28.     /**
  29.      * @var array<string, null> properties to be lazy loaded, indexed by property name
  30.      */
  31.     public static $lazyPropertiesNames = array (
  32. );
  33.     /**
  34.      * @var array<string, mixed> default values of properties to be lazy loaded, with keys being the property names
  35.      *
  36.      * @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
  37.      */
  38.     public static $lazyPropertiesDefaults = array (
  39. );
  40.     public function __construct(?\Closure $initializer null, ?\Closure $cloner null)
  41.     {
  42.         $this->__initializer__ $initializer;
  43.         $this->__cloner__      $cloner;
  44.     }
  45.     /**
  46.      * 
  47.      * @return array
  48.      */
  49.     public function __sleep()
  50.     {
  51.         if ($this->__isInitialized__) {
  52.             return ['__isInitialized__''' "\0" 'Eccube\\Entity\\Member' "\0" 'id''' "\0" 'Eccube\\Entity\\Member' "\0" 'name''' "\0" 'Eccube\\Entity\\Member' "\0" 'department''' "\0" 'Eccube\\Entity\\Member' "\0" 'login_id''' "\0" 'Eccube\\Entity\\Member' "\0" 'plainPassword''' "\0" 'Eccube\\Entity\\Member' "\0" 'password''' "\0" 'Eccube\\Entity\\Member' "\0" 'salt''' "\0" 'Eccube\\Entity\\Member' "\0" 'sort_no''' "\0" 'Eccube\\Entity\\Member' "\0" 'two_factor_auth_key''' "\0" 'Eccube\\Entity\\Member' "\0" 'two_factor_auth_enabled''' "\0" 'Eccube\\Entity\\Member' "\0" 'create_date''' "\0" 'Eccube\\Entity\\Member' "\0" 'update_date''' "\0" 'Eccube\\Entity\\Member' "\0" 'login_date''' "\0" 'Eccube\\Entity\\Member' "\0" 'Work''' "\0" 'Eccube\\Entity\\Member' "\0" 'Authority''' "\0" 'Eccube\\Entity\\Member' "\0" 'Creator'];
  53.         }
  54.         return ['__isInitialized__''' "\0" 'Eccube\\Entity\\Member' "\0" 'id''' "\0" 'Eccube\\Entity\\Member' "\0" 'name''' "\0" 'Eccube\\Entity\\Member' "\0" 'department''' "\0" 'Eccube\\Entity\\Member' "\0" 'login_id''' "\0" 'Eccube\\Entity\\Member' "\0" 'plainPassword''' "\0" 'Eccube\\Entity\\Member' "\0" 'password''' "\0" 'Eccube\\Entity\\Member' "\0" 'salt''' "\0" 'Eccube\\Entity\\Member' "\0" 'sort_no''' "\0" 'Eccube\\Entity\\Member' "\0" 'two_factor_auth_key''' "\0" 'Eccube\\Entity\\Member' "\0" 'two_factor_auth_enabled''' "\0" 'Eccube\\Entity\\Member' "\0" 'create_date''' "\0" 'Eccube\\Entity\\Member' "\0" 'update_date''' "\0" 'Eccube\\Entity\\Member' "\0" 'login_date''' "\0" 'Eccube\\Entity\\Member' "\0" 'Work''' "\0" 'Eccube\\Entity\\Member' "\0" 'Authority''' "\0" 'Eccube\\Entity\\Member' "\0" 'Creator'];
  55.     }
  56.     /**
  57.      * 
  58.      */
  59.     public function __wakeup()
  60.     {
  61.         if ( ! $this->__isInitialized__) {
  62.             $this->__initializer__ = function (Member $proxy) {
  63.                 $proxy->__setInitializer(null);
  64.                 $proxy->__setCloner(null);
  65.                 $existingProperties get_object_vars($proxy);
  66.                 foreach ($proxy::$lazyPropertiesDefaults as $property => $defaultValue) {
  67.                     if ( ! array_key_exists($property$existingProperties)) {
  68.                         $proxy->$property $defaultValue;
  69.                     }
  70.                 }
  71.             };
  72.         }
  73.     }
  74.     /**
  75.      * 
  76.      */
  77.     public function __clone()
  78.     {
  79.         $this->__cloner__ && $this->__cloner__->__invoke($this'__clone', []);
  80.     }
  81.     /**
  82.      * Forces initialization of the proxy
  83.      */
  84.     public function __load(): void
  85.     {
  86.         $this->__initializer__ && $this->__initializer__->__invoke($this'__load', []);
  87.     }
  88.     /**
  89.      * {@inheritDoc}
  90.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  91.      */
  92.     public function __isInitialized(): bool
  93.     {
  94.         return $this->__isInitialized__;
  95.     }
  96.     /**
  97.      * {@inheritDoc}
  98.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  99.      */
  100.     public function __setInitialized($initialized): void
  101.     {
  102.         $this->__isInitialized__ $initialized;
  103.     }
  104.     /**
  105.      * {@inheritDoc}
  106.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  107.      */
  108.     public function __setInitializer(\Closure $initializer null): void
  109.     {
  110.         $this->__initializer__ $initializer;
  111.     }
  112.     /**
  113.      * {@inheritDoc}
  114.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  115.      */
  116.     public function __getInitializer(): ?\Closure
  117.     {
  118.         return $this->__initializer__;
  119.     }
  120.     /**
  121.      * {@inheritDoc}
  122.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  123.      */
  124.     public function __setCloner(\Closure $cloner null): void
  125.     {
  126.         $this->__cloner__ $cloner;
  127.     }
  128.     /**
  129.      * {@inheritDoc}
  130.      * @internal generated method: use only when explicitly handling proxy specific cloning logic
  131.      */
  132.     public function __getCloner(): ?\Closure
  133.     {
  134.         return $this->__cloner__;
  135.     }
  136.     /**
  137.      * {@inheritDoc}
  138.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  139.      * @deprecated no longer in use - generated code now relies on internal components rather than generated public API
  140.      * @static
  141.      */
  142.     public function __getLazyProperties(): array
  143.     {
  144.         return self::$lazyPropertiesDefaults;
  145.     }
  146.     
  147.     /**
  148.      * {@inheritDoc}
  149.      */
  150.     public function __toString(): string
  151.     {
  152.         $this->__initializer__ && $this->__initializer__->__invoke($this'__toString', []);
  153.         return parent::__toString();
  154.     }
  155.     /**
  156.      * {@inheritDoc}
  157.      */
  158.     public function getRoles()
  159.     {
  160.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRoles', []);
  161.         return parent::getRoles();
  162.     }
  163.     /**
  164.      * {@inheritDoc}
  165.      */
  166.     public function getUsername()
  167.     {
  168.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUsername', []);
  169.         return parent::getUsername();
  170.     }
  171.     /**
  172.      * {@inheritDoc}
  173.      */
  174.     public function eraseCredentials()
  175.     {
  176.         $this->__initializer__ && $this->__initializer__->__invoke($this'eraseCredentials', []);
  177.         return parent::eraseCredentials();
  178.     }
  179.     /**
  180.      * {@inheritDoc}
  181.      */
  182.     public function getId()
  183.     {
  184.         if ($this->__isInitialized__ === false) {
  185.             return (int)  parent::getId();
  186.         }
  187.         $this->__initializer__ && $this->__initializer__->__invoke($this'getId', []);
  188.         return parent::getId();
  189.     }
  190.     /**
  191.      * {@inheritDoc}
  192.      */
  193.     public function setName($name NULL)
  194.     {
  195.         $this->__initializer__ && $this->__initializer__->__invoke($this'setName', [$name]);
  196.         return parent::setName($name);
  197.     }
  198.     /**
  199.      * {@inheritDoc}
  200.      */
  201.     public function getName()
  202.     {
  203.         $this->__initializer__ && $this->__initializer__->__invoke($this'getName', []);
  204.         return parent::getName();
  205.     }
  206.     /**
  207.      * {@inheritDoc}
  208.      */
  209.     public function setDepartment($department NULL)
  210.     {
  211.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDepartment', [$department]);
  212.         return parent::setDepartment($department);
  213.     }
  214.     /**
  215.      * {@inheritDoc}
  216.      */
  217.     public function getDepartment()
  218.     {
  219.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDepartment', []);
  220.         return parent::getDepartment();
  221.     }
  222.     /**
  223.      * {@inheritDoc}
  224.      */
  225.     public function setLoginId($loginId)
  226.     {
  227.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLoginId', [$loginId]);
  228.         return parent::setLoginId($loginId);
  229.     }
  230.     /**
  231.      * {@inheritDoc}
  232.      */
  233.     public function getLoginId()
  234.     {
  235.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLoginId', []);
  236.         return parent::getLoginId();
  237.     }
  238.     /**
  239.      * {@inheritDoc}
  240.      */
  241.     public function getPlainPassword(): ?string
  242.     {
  243.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPlainPassword', []);
  244.         return parent::getPlainPassword();
  245.     }
  246.     /**
  247.      * {@inheritDoc}
  248.      */
  249.     public function setPlainPassword(?string $password): \Eccube\Entity\Member
  250.     {
  251.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPlainPassword', [$password]);
  252.         return parent::setPlainPassword($password);
  253.     }
  254.     /**
  255.      * {@inheritDoc}
  256.      */
  257.     public function setPassword($password)
  258.     {
  259.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPassword', [$password]);
  260.         return parent::setPassword($password);
  261.     }
  262.     /**
  263.      * {@inheritDoc}
  264.      */
  265.     public function getPassword()
  266.     {
  267.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPassword', []);
  268.         return parent::getPassword();
  269.     }
  270.     /**
  271.      * {@inheritDoc}
  272.      */
  273.     public function setSalt($salt)
  274.     {
  275.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSalt', [$salt]);
  276.         return parent::setSalt($salt);
  277.     }
  278.     /**
  279.      * {@inheritDoc}
  280.      */
  281.     public function getSalt()
  282.     {
  283.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSalt', []);
  284.         return parent::getSalt();
  285.     }
  286.     /**
  287.      * {@inheritDoc}
  288.      */
  289.     public function setSortNo($sortNo)
  290.     {
  291.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSortNo', [$sortNo]);
  292.         return parent::setSortNo($sortNo);
  293.     }
  294.     /**
  295.      * {@inheritDoc}
  296.      */
  297.     public function getSortNo()
  298.     {
  299.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSortNo', []);
  300.         return parent::getSortNo();
  301.     }
  302.     /**
  303.      * {@inheritDoc}
  304.      */
  305.     public function setTwoFactorAuthKey($two_factor_auth_key)
  306.     {
  307.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTwoFactorAuthKey', [$two_factor_auth_key]);
  308.         return parent::setTwoFactorAuthKey($two_factor_auth_key);
  309.     }
  310.     /**
  311.      * {@inheritDoc}
  312.      */
  313.     public function getTwoFactorAuthKey()
  314.     {
  315.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTwoFactorAuthKey', []);
  316.         return parent::getTwoFactorAuthKey();
  317.     }
  318.     /**
  319.      * {@inheritDoc}
  320.      */
  321.     public function setTwoFactorAuthEnabled($two_factor_auth_enabled)
  322.     {
  323.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTwoFactorAuthEnabled', [$two_factor_auth_enabled]);
  324.         return parent::setTwoFactorAuthEnabled($two_factor_auth_enabled);
  325.     }
  326.     /**
  327.      * {@inheritDoc}
  328.      */
  329.     public function isTwoFactorAuthEnabled()
  330.     {
  331.         $this->__initializer__ && $this->__initializer__->__invoke($this'isTwoFactorAuthEnabled', []);
  332.         return parent::isTwoFactorAuthEnabled();
  333.     }
  334.     /**
  335.      * {@inheritDoc}
  336.      */
  337.     public function setCreateDate($createDate)
  338.     {
  339.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCreateDate', [$createDate]);
  340.         return parent::setCreateDate($createDate);
  341.     }
  342.     /**
  343.      * {@inheritDoc}
  344.      */
  345.     public function getCreateDate()
  346.     {
  347.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCreateDate', []);
  348.         return parent::getCreateDate();
  349.     }
  350.     /**
  351.      * {@inheritDoc}
  352.      */
  353.     public function setUpdateDate($updateDate)
  354.     {
  355.         $this->__initializer__ && $this->__initializer__->__invoke($this'setUpdateDate', [$updateDate]);
  356.         return parent::setUpdateDate($updateDate);
  357.     }
  358.     /**
  359.      * {@inheritDoc}
  360.      */
  361.     public function getUpdateDate()
  362.     {
  363.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUpdateDate', []);
  364.         return parent::getUpdateDate();
  365.     }
  366.     /**
  367.      * {@inheritDoc}
  368.      */
  369.     public function setLoginDate($loginDate NULL)
  370.     {
  371.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLoginDate', [$loginDate]);
  372.         return parent::setLoginDate($loginDate);
  373.     }
  374.     /**
  375.      * {@inheritDoc}
  376.      */
  377.     public function getLoginDate()
  378.     {
  379.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLoginDate', []);
  380.         return parent::getLoginDate();
  381.     }
  382.     /**
  383.      * {@inheritDoc}
  384.      */
  385.     public function setWork(\Eccube\Entity\Master\Work $work NULL)
  386.     {
  387.         $this->__initializer__ && $this->__initializer__->__invoke($this'setWork', [$work]);
  388.         return parent::setWork($work);
  389.     }
  390.     /**
  391.      * {@inheritDoc}
  392.      */
  393.     public function getWork()
  394.     {
  395.         $this->__initializer__ && $this->__initializer__->__invoke($this'getWork', []);
  396.         return parent::getWork();
  397.     }
  398.     /**
  399.      * {@inheritDoc}
  400.      */
  401.     public function setAuthority(\Eccube\Entity\Master\Authority $authority NULL)
  402.     {
  403.         $this->__initializer__ && $this->__initializer__->__invoke($this'setAuthority', [$authority]);
  404.         return parent::setAuthority($authority);
  405.     }
  406.     /**
  407.      * {@inheritDoc}
  408.      */
  409.     public function getAuthority()
  410.     {
  411.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAuthority', []);
  412.         return parent::getAuthority();
  413.     }
  414.     /**
  415.      * {@inheritDoc}
  416.      */
  417.     public function setCreator(\Eccube\Entity\Member $creator NULL)
  418.     {
  419.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCreator', [$creator]);
  420.         return parent::setCreator($creator);
  421.     }
  422.     /**
  423.      * {@inheritDoc}
  424.      */
  425.     public function getCreator()
  426.     {
  427.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCreator', []);
  428.         return parent::getCreator();
  429.     }
  430.     /**
  431.      * {@inheritDoc}
  432.      */
  433.     public function serialize()
  434.     {
  435.         $this->__initializer__ && $this->__initializer__->__invoke($this'serialize', []);
  436.         return parent::serialize();
  437.     }
  438.     /**
  439.      * {@inheritDoc}
  440.      */
  441.     public function unserialize($serialized)
  442.     {
  443.         $this->__initializer__ && $this->__initializer__->__invoke($this'unserialize', [$serialized]);
  444.         return parent::unserialize($serialized);
  445.     }
  446.     /**
  447.      * {@inheritDoc}
  448.      */
  449.     public function offsetExists($offset)
  450.     {
  451.         $this->__initializer__ && $this->__initializer__->__invoke($this'offsetExists', [$offset]);
  452.         return parent::offsetExists($offset);
  453.     }
  454.     /**
  455.      * {@inheritDoc}
  456.      */
  457.     public function offsetSet($offset$value)
  458.     {
  459.         $this->__initializer__ && $this->__initializer__->__invoke($this'offsetSet', [$offset$value]);
  460.         return parent::offsetSet($offset$value);
  461.     }
  462.     /**
  463.      * {@inheritDoc}
  464.      */
  465.     public function offsetGet($offset)
  466.     {
  467.         $this->__initializer__ && $this->__initializer__->__invoke($this'offsetGet', [$offset]);
  468.         return parent::offsetGet($offset);
  469.     }
  470.     /**
  471.      * {@inheritDoc}
  472.      */
  473.     public function offsetUnset($offset)
  474.     {
  475.         $this->__initializer__ && $this->__initializer__->__invoke($this'offsetUnset', [$offset]);
  476.         return parent::offsetUnset($offset);
  477.     }
  478.     /**
  479.      * {@inheritDoc}
  480.      */
  481.     public function setPropertiesFromArray(array $arrProps, array $excludeAttribute = [], \ReflectionClass $parentClass NULL)
  482.     {
  483.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPropertiesFromArray', [$arrProps$excludeAttribute$parentClass]);
  484.         return parent::setPropertiesFromArray($arrProps$excludeAttribute$parentClass);
  485.     }
  486.     /**
  487.      * {@inheritDoc}
  488.      */
  489.     public function toArray(array $excludeAttribute = ['__initializer__''__cloner__''__isInitialized__'], \ReflectionClass $parentClass NULL)
  490.     {
  491.         $this->__initializer__ && $this->__initializer__->__invoke($this'toArray', [$excludeAttribute$parentClass]);
  492.         return parent::toArray($excludeAttribute$parentClass);
  493.     }
  494.     /**
  495.      * {@inheritDoc}
  496.      */
  497.     public function toNormalizedArray(array $excludeAttribute = ['__initializer__''__cloner__''__isInitialized__'])
  498.     {
  499.         $this->__initializer__ && $this->__initializer__->__invoke($this'toNormalizedArray', [$excludeAttribute]);
  500.         return parent::toNormalizedArray($excludeAttribute);
  501.     }
  502.     /**
  503.      * {@inheritDoc}
  504.      */
  505.     public function toJSON(array $excludeAttribute = ['__initializer__''__cloner__''__isInitialized__'])
  506.     {
  507.         $this->__initializer__ && $this->__initializer__->__invoke($this'toJSON', [$excludeAttribute]);
  508.         return parent::toJSON($excludeAttribute);
  509.     }
  510.     /**
  511.      * {@inheritDoc}
  512.      */
  513.     public function toXML(array $excludeAttribute = ['__initializer__''__cloner__''__isInitialized__'])
  514.     {
  515.         $this->__initializer__ && $this->__initializer__->__invoke($this'toXML', [$excludeAttribute]);
  516.         return parent::toXML($excludeAttribute);
  517.     }
  518.     /**
  519.      * {@inheritDoc}
  520.      */
  521.     public function copyProperties($srcObject, array $excludeAttribute = [])
  522.     {
  523.         $this->__initializer__ && $this->__initializer__->__invoke($this'copyProperties', [$srcObject$excludeAttribute]);
  524.         return parent::copyProperties($srcObject$excludeAttribute);
  525.     }
  526.     /**
  527.      * {@inheritDoc}
  528.      */
  529.     public function getEntityIdentifierAsArray(\Eccube\Entity\AbstractEntity $Entity)
  530.     {
  531.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEntityIdentifierAsArray', [$Entity]);
  532.         return parent::getEntityIdentifierAsArray($Entity);
  533.     }
  534. }