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

Open in your IDE?
  1. <?php
  2. namespace Proxies\__CG__\Slivki\Entity;
  3. /**
  4.  * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
  5.  */
  6. class User extends \Slivki\Entity\User 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__''createdOn''cityID''email''password''acceptNewsletter''firstName''lastName''phone''city''status''socialAccounts''offerOrders''offerOrderDetails''balance''comments''favouriteOffers''balanceActivity''userActivity''userGroups''mailingCampaignTypes''userVisits''registeredFromUtmSource''token''properties''offers''totallyUnsubscribed''commentsOnReview''favouriteCategories''directors''activity''seenMicrophoneTooltip''publicists''profileImageMedia''notShowRatePopupTill''geoLocationAccepted''geoLocation''createdOffers''createdSales''referer''referrals''creditCards''saleProductBasket''phones''shareClick''telegramID''siteID''authTokens''managerName''mogilevMailingBonusUsed''gomelMailingBonusUsed''deliveryAddresses''guid''subscriptionPlanUserRelations''batchCodesCount''moneyBalance''externalId''events''ID''transitionID'];
  53.         }
  54.         return ['__isInitialized__''createdOn''cityID''email''password''acceptNewsletter''firstName''lastName''phone''city''status''socialAccounts''offerOrders''offerOrderDetails''balance''comments''favouriteOffers''balanceActivity''userActivity''userGroups''mailingCampaignTypes''userVisits''registeredFromUtmSource''token''properties''offers''totallyUnsubscribed''commentsOnReview''favouriteCategories''directors''activity''seenMicrophoneTooltip''publicists''profileImageMedia''notShowRatePopupTill''geoLocationAccepted''geoLocation''createdOffers''createdSales''referer''referrals''creditCards''saleProductBasket''phones''shareClick''telegramID''siteID''authTokens''managerName''mogilevMailingBonusUsed''gomelMailingBonusUsed''deliveryAddresses''guid''subscriptionPlanUserRelations''batchCodesCount''moneyBalance''externalId''events''ID''transitionID'];
  55.     }
  56.     /**
  57.      * 
  58.      */
  59.     public function __wakeup()
  60.     {
  61.         if ( ! $this->__isInitialized__) {
  62.             $this->__initializer__ = function (User $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 getExternalId(): \Symfony\Component\Uid\UuidV4
  151.     {
  152.         $this->__initializer__ && $this->__initializer__->__invoke($this'getExternalId', []);
  153.         return parent::getExternalId();
  154.     }
  155.     /**
  156.      * {@inheritDoc}
  157.      */
  158.     public function getSocialAccounts()
  159.     {
  160.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSocialAccounts', []);
  161.         return parent::getSocialAccounts();
  162.     }
  163.     /**
  164.      * {@inheritDoc}
  165.      */
  166.     public function setSocialAccounts($socialAccounts)
  167.     {
  168.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSocialAccounts', [$socialAccounts]);
  169.         return parent::setSocialAccounts($socialAccounts);
  170.     }
  171.     /**
  172.      * {@inheritDoc}
  173.      */
  174.     public function addSocialAccount(\Slivki\Entity\SocialAccount $socialAccount)
  175.     {
  176.         $this->__initializer__ && $this->__initializer__->__invoke($this'addSocialAccount', [$socialAccount]);
  177.         return parent::addSocialAccount($socialAccount);
  178.     }
  179.     /**
  180.      * {@inheritDoc}
  181.      */
  182.     public function setShareClick($shareClick)
  183.     {
  184.         $this->__initializer__ && $this->__initializer__->__invoke($this'setShareClick', [$shareClick]);
  185.         return parent::setShareClick($shareClick);
  186.     }
  187.     /**
  188.      * {@inheritDoc}
  189.      */
  190.     public function getShareClick()
  191.     {
  192.         $this->__initializer__ && $this->__initializer__->__invoke($this'getShareClick', []);
  193.         return parent::getShareClick();
  194.     }
  195.     /**
  196.      * {@inheritDoc}
  197.      */
  198.     public function getCreatedOn()
  199.     {
  200.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCreatedOn', []);
  201.         return parent::getCreatedOn();
  202.     }
  203.     /**
  204.      * {@inheritDoc}
  205.      */
  206.     public function setCreatedOn($createdOn)
  207.     {
  208.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCreatedOn', [$createdOn]);
  209.         return parent::setCreatedOn($createdOn);
  210.     }
  211.     /**
  212.      * {@inheritDoc}
  213.      */
  214.     public function getPhones()
  215.     {
  216.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPhones', []);
  217.         return parent::getPhones();
  218.     }
  219.     /**
  220.      * {@inheritDoc}
  221.      */
  222.     public function addPhone(\Slivki\Entity\UserPhone $phone)
  223.     {
  224.         $this->__initializer__ && $this->__initializer__->__invoke($this'addPhone', [$phone]);
  225.         return parent::addPhone($phone);
  226.     }
  227.     /**
  228.      * {@inheritDoc}
  229.      */
  230.     public function getCurrentPhone()
  231.     {
  232.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCurrentPhone', []);
  233.         return parent::getCurrentPhone();
  234.     }
  235.     /**
  236.      * {@inheritDoc}
  237.      */
  238.     public function getCityID()
  239.     {
  240.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCityID', []);
  241.         return parent::getCityID();
  242.     }
  243.     /**
  244.      * {@inheritDoc}
  245.      */
  246.     public function setCityID($cityID)
  247.     {
  248.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCityID', [$cityID]);
  249.         return parent::setCityID($cityID);
  250.     }
  251.     /**
  252.      * {@inheritDoc}
  253.      */
  254.     public function getEmail()
  255.     {
  256.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEmail', []);
  257.         return parent::getEmail();
  258.     }
  259.     /**
  260.      * {@inheritDoc}
  261.      */
  262.     public function setEmail($email)
  263.     {
  264.         $this->__initializer__ && $this->__initializer__->__invoke($this'setEmail', [$email]);
  265.         return parent::setEmail($email);
  266.     }
  267.     /**
  268.      * {@inheritDoc}
  269.      */
  270.     public function getPassword()
  271.     {
  272.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPassword', []);
  273.         return parent::getPassword();
  274.     }
  275.     /**
  276.      * {@inheritDoc}
  277.      */
  278.     public function getPasswordClear()
  279.     {
  280.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPasswordClear', []);
  281.         return parent::getPasswordClear();
  282.     }
  283.     /**
  284.      * {@inheritDoc}
  285.      */
  286.     public function getPasswordEncoded()
  287.     {
  288.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPasswordEncoded', []);
  289.         return parent::getPasswordEncoded();
  290.     }
  291.     /**
  292.      * {@inheritDoc}
  293.      */
  294.     public function setPassword($password)
  295.     {
  296.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPassword', [$password]);
  297.         return parent::setPassword($password);
  298.     }
  299.     /**
  300.      * {@inheritDoc}
  301.      */
  302.     public function encryptPassword($password)
  303.     {
  304.         $this->__initializer__ && $this->__initializer__->__invoke($this'encryptPassword', [$password]);
  305.         return parent::encryptPassword($password);
  306.     }
  307.     /**
  308.      * {@inheritDoc}
  309.      */
  310.     public function setDefaultPassword(): void
  311.     {
  312.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDefaultPassword', []);
  313.         parent::setDefaultPassword();
  314.     }
  315.     /**
  316.      * {@inheritDoc}
  317.      */
  318.     public function checkPassword($password)
  319.     {
  320.         $this->__initializer__ && $this->__initializer__->__invoke($this'checkPassword', [$password]);
  321.         return parent::checkPassword($password);
  322.     }
  323.     /**
  324.      * {@inheritDoc}
  325.      */
  326.     public function getAcceptNewsletter()
  327.     {
  328.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAcceptNewsletter', []);
  329.         return parent::getAcceptNewsletter();
  330.     }
  331.     /**
  332.      * {@inheritDoc}
  333.      */
  334.     public function setAcceptNewsletter($acceptNewsletter)
  335.     {
  336.         $this->__initializer__ && $this->__initializer__->__invoke($this'setAcceptNewsletter', [$acceptNewsletter]);
  337.         return parent::setAcceptNewsletter($acceptNewsletter);
  338.     }
  339.     /**
  340.      * {@inheritDoc}
  341.      */
  342.     public function getCity()
  343.     {
  344.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCity', []);
  345.         return parent::getCity();
  346.     }
  347.     /**
  348.      * {@inheritDoc}
  349.      */
  350.     public function setCity($city)
  351.     {
  352.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCity', [$city]);
  353.         return parent::setCity($city);
  354.     }
  355.     /**
  356.      * {@inheritDoc}
  357.      */
  358.     public function getFirstName()
  359.     {
  360.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFirstName', []);
  361.         return parent::getFirstName();
  362.     }
  363.     /**
  364.      * {@inheritDoc}
  365.      */
  366.     public function setFirstName($firstName)
  367.     {
  368.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFirstName', [$firstName]);
  369.         return parent::setFirstName($firstName);
  370.     }
  371.     /**
  372.      * {@inheritDoc}
  373.      */
  374.     public function getLastName()
  375.     {
  376.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLastName', []);
  377.         return parent::getLastName();
  378.     }
  379.     /**
  380.      * {@inheritDoc}
  381.      */
  382.     public function setLastName($lastName)
  383.     {
  384.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLastName', [$lastName]);
  385.         return parent::setLastName($lastName);
  386.     }
  387.     /**
  388.      * {@inheritDoc}
  389.      */
  390.     public function getPhone()
  391.     {
  392.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPhone', []);
  393.         return parent::getPhone();
  394.     }
  395.     /**
  396.      * {@inheritDoc}
  397.      */
  398.     public function getCustomerPhone()
  399.     {
  400.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCustomerPhone', []);
  401.         return parent::getCustomerPhone();
  402.     }
  403.     /**
  404.      * {@inheritDoc}
  405.      */
  406.     public function setPhone($phone)
  407.     {
  408.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPhone', [$phone]);
  409.         return parent::setPhone($phone);
  410.     }
  411.     /**
  412.      * {@inheritDoc}
  413.      */
  414.     public function getManagerName()
  415.     {
  416.         $this->__initializer__ && $this->__initializer__->__invoke($this'getManagerName', []);
  417.         return parent::getManagerName();
  418.     }
  419.     /**
  420.      * {@inheritDoc}
  421.      */
  422.     public function setManagerName($managerName)
  423.     {
  424.         $this->__initializer__ && $this->__initializer__->__invoke($this'setManagerName', [$managerName]);
  425.         return parent::setManagerName($managerName);
  426.     }
  427.     /**
  428.      * {@inheritDoc}
  429.      */
  430.     public function getStatus()
  431.     {
  432.         $this->__initializer__ && $this->__initializer__->__invoke($this'getStatus', []);
  433.         return parent::getStatus();
  434.     }
  435.     /**
  436.      * {@inheritDoc}
  437.      */
  438.     public function setStatus($status)
  439.     {
  440.         $this->__initializer__ && $this->__initializer__->__invoke($this'setStatus', [$status]);
  441.         return parent::setStatus($status);
  442.     }
  443.     /**
  444.      * {@inheritDoc}
  445.      */
  446.     public function getBalance(): float
  447.     {
  448.         $this->__initializer__ && $this->__initializer__->__invoke($this'getBalance', []);
  449.         return parent::getBalance();
  450.     }
  451.     /**
  452.      * {@inheritDoc}
  453.      */
  454.     public function setBalance($balance)
  455.     {
  456.         $this->__initializer__ && $this->__initializer__->__invoke($this'setBalance', [$balance]);
  457.         return parent::setBalance($balance);
  458.     }
  459.     /**
  460.      * {@inheritDoc}
  461.      */
  462.     public function getRegisteredFromUtmSource()
  463.     {
  464.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRegisteredFromUtmSource', []);
  465.         return parent::getRegisteredFromUtmSource();
  466.     }
  467.     /**
  468.      * {@inheritDoc}
  469.      */
  470.     public function setRegisteredFromUtmSource($registeredFromUtmSource)
  471.     {
  472.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRegisteredFromUtmSource', [$registeredFromUtmSource]);
  473.         return parent::setRegisteredFromUtmSource($registeredFromUtmSource);
  474.     }
  475.     /**
  476.      * {@inheritDoc}
  477.      */
  478.     public function getOfferOrders()
  479.     {
  480.         $this->__initializer__ && $this->__initializer__->__invoke($this'getOfferOrders', []);
  481.         return parent::getOfferOrders();
  482.     }
  483.     /**
  484.      * {@inheritDoc}
  485.      */
  486.     public function setOfferOrders(\Doctrine\Common\Collections\ArrayCollection $offerOrders)
  487.     {
  488.         $this->__initializer__ && $this->__initializer__->__invoke($this'setOfferOrders', [$offerOrders]);
  489.         return parent::setOfferOrders($offerOrders);
  490.     }
  491.     /**
  492.      * {@inheritDoc}
  493.      */
  494.     public function getNotSeenOfferOrders()
  495.     {
  496.         $this->__initializer__ && $this->__initializer__->__invoke($this'getNotSeenOfferOrders', []);
  497.         return parent::getNotSeenOfferOrders();
  498.     }
  499.     /**
  500.      * {@inheritDoc}
  501.      */
  502.     public function getRecentCodesCount()
  503.     {
  504.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRecentCodesCount', []);
  505.         return parent::getRecentCodesCount();
  506.     }
  507.     /**
  508.      * {@inheritDoc}
  509.      */
  510.     public function getTotalCodesCount()
  511.     {
  512.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTotalCodesCount', []);
  513.         return parent::getTotalCodesCount();
  514.     }
  515.     /**
  516.      * {@inheritDoc}
  517.      */
  518.     public function getSplitTotalCodesCount()
  519.     {
  520.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSplitTotalCodesCount', []);
  521.         return parent::getSplitTotalCodesCount();
  522.     }
  523.     /**
  524.      * {@inheritDoc}
  525.      */
  526.     public function getCodesCountByOffer(?\Slivki\Entity\Offer $offer): int
  527.     {
  528.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCodesCountByOffer', [$offer]);
  529.         return parent::getCodesCountByOffer($offer);
  530.     }
  531.     /**
  532.      * {@inheritDoc}
  533.      */
  534.     public function getCodesCountByOfferID($offerID): int
  535.     {
  536.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCodesCountByOfferID', [$offerID]);
  537.         return parent::getCodesCountByOfferID($offerID);
  538.     }
  539.     /**
  540.      * {@inheritDoc}
  541.      */
  542.     public function getFavouriteOffers()
  543.     {
  544.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFavouriteOffers', []);
  545.         return parent::getFavouriteOffers();
  546.     }
  547.     /**
  548.      * {@inheritDoc}
  549.      */
  550.     public function addFavouriteOffer(\Slivki\Entity\Offer $offer)
  551.     {
  552.         $this->__initializer__ && $this->__initializer__->__invoke($this'addFavouriteOffer', [$offer]);
  553.         return parent::addFavouriteOffer($offer);
  554.     }
  555.     /**
  556.      * {@inheritDoc}
  557.      */
  558.     public function getCommentsByOffer(\Slivki\Entity\Offer $offer)
  559.     {
  560.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCommentsByOffer', [$offer]);
  561.         return parent::getCommentsByOffer($offer);
  562.     }
  563.     /**
  564.      * {@inheritDoc}
  565.      */
  566.     public function deleteFavouriteOffer($offer)
  567.     {
  568.         $this->__initializer__ && $this->__initializer__->__invoke($this'deleteFavouriteOffer', [$offer]);
  569.         return parent::deleteFavouriteOffer($offer);
  570.     }
  571.     /**
  572.      * {@inheritDoc}
  573.      */
  574.     public function isOfferFavourite($offer)
  575.     {
  576.         $this->__initializer__ && $this->__initializer__->__invoke($this'isOfferFavourite', [$offer]);
  577.         return parent::isOfferFavourite($offer);
  578.     }
  579.     /**
  580.      * {@inheritDoc}
  581.      */
  582.     public function getBalanceActivity()
  583.     {
  584.         $this->__initializer__ && $this->__initializer__->__invoke($this'getBalanceActivity', []);
  585.         return parent::getBalanceActivity();
  586.     }
  587.     /**
  588.      * {@inheritDoc}
  589.      */
  590.     public function getBalanceActivityByType(\Slivki\Entity\UserBalanceActivityType $activityType)
  591.     {
  592.         $this->__initializer__ && $this->__initializer__->__invoke($this'getBalanceActivityByType', [$activityType]);
  593.         return parent::getBalanceActivityByType($activityType);
  594.     }
  595.     /**
  596.      * {@inheritDoc}
  597.      */
  598.     public function addBalanceActivity(\Slivki\Entity\UserBalanceActivity $activity)
  599.     {
  600.         $this->__initializer__ && $this->__initializer__->__invoke($this'addBalanceActivity', [$activity]);
  601.         return parent::addBalanceActivity($activity);
  602.     }
  603.     /**
  604.      * {@inheritDoc}
  605.      */
  606.     public function getUserActivity()
  607.     {
  608.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUserActivity', []);
  609.         return parent::getUserActivity();
  610.     }
  611.     /**
  612.      * {@inheritDoc}
  613.      */
  614.     public function addUserActivity(\Slivki\Entity\UserActivity $activity)
  615.     {
  616.         $this->__initializer__ && $this->__initializer__->__invoke($this'addUserActivity', [$activity]);
  617.         return parent::addUserActivity($activity);
  618.     }
  619.     /**
  620.      * {@inheritDoc}
  621.      */
  622.     public function getDeliveryAddresses()
  623.     {
  624.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDeliveryAddresses', []);
  625.         return parent::getDeliveryAddresses();
  626.     }
  627.     /**
  628.      * {@inheritDoc}
  629.      */
  630.     public function getAvailableUserAddresses(int $offerId): \Doctrine\Common\Collections\ArrayCollection
  631.     {
  632.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAvailableUserAddresses', [$offerId]);
  633.         return parent::getAvailableUserAddresses($offerId);
  634.     }
  635.     /**
  636.      * {@inheritDoc}
  637.      */
  638.     public function getAvailableUserAddressesGift(int $offerId): \Doctrine\Common\Collections\ArrayCollection
  639.     {
  640.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAvailableUserAddressesGift', [$offerId]);
  641.         return parent::getAvailableUserAddressesGift($offerId);
  642.     }
  643.     /**
  644.      * {@inheritDoc}
  645.      */
  646.     public function addDeliveryAddress(\Slivki\Entity\UserAddress $address)
  647.     {
  648.         $this->__initializer__ && $this->__initializer__->__invoke($this'addDeliveryAddress', [$address]);
  649.         return parent::addDeliveryAddress($address);
  650.     }
  651.     /**
  652.      * {@inheritDoc}
  653.      */
  654.     public function getGuid()
  655.     {
  656.         $this->__initializer__ && $this->__initializer__->__invoke($this'getGuid', []);
  657.         return parent::getGuid();
  658.     }
  659.     /**
  660.      * {@inheritDoc}
  661.      */
  662.     public function setGuid($guid)
  663.     {
  664.         $this->__initializer__ && $this->__initializer__->__invoke($this'setGuid', [$guid]);
  665.         return parent::setGuid($guid);
  666.     }
  667.     /**
  668.      * {@inheritDoc}
  669.      */
  670.     public function getUserGroups()
  671.     {
  672.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUserGroups', []);
  673.         return parent::getUserGroups();
  674.     }
  675.     /**
  676.      * {@inheritDoc}
  677.      */
  678.     public function addUserGroup(\Slivki\Entity\UserGroup $userGroup)
  679.     {
  680.         $this->__initializer__ && $this->__initializer__->__invoke($this'addUserGroup', [$userGroup]);
  681.         return parent::addUserGroup($userGroup);
  682.     }
  683.     /**
  684.      * {@inheritDoc}
  685.      */
  686.     public function removeUserGroup(\Slivki\Entity\UserGroup $userGroup)
  687.     {
  688.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeUserGroup', [$userGroup]);
  689.         return parent::removeUserGroup($userGroup);
  690.     }
  691.     /**
  692.      * {@inheritDoc}
  693.      */
  694.     public function getMailingCampaignTypes()
  695.     {
  696.         $this->__initializer__ && $this->__initializer__->__invoke($this'getMailingCampaignTypes', []);
  697.         return parent::getMailingCampaignTypes();
  698.     }
  699.     /**
  700.      * {@inheritDoc}
  701.      */
  702.     public function addMailingCampaignTypes(\Slivki\Entity\MailingCampaignType $mailingCampaignType)
  703.     {
  704.         $this->__initializer__ && $this->__initializer__->__invoke($this'addMailingCampaignTypes', [$mailingCampaignType]);
  705.         return parent::addMailingCampaignTypes($mailingCampaignType);
  706.     }
  707.     /**
  708.      * {@inheritDoc}
  709.      */
  710.     public function removeMailingCampaignType(\Slivki\Entity\MailingCampaignType $mailingCampaignType)
  711.     {
  712.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeMailingCampaignType', [$mailingCampaignType]);
  713.         return parent::removeMailingCampaignType($mailingCampaignType);
  714.     }
  715.     /**
  716.      * {@inheritDoc}
  717.      */
  718.     public function hasMailingCampaignType($mailingCampaignTypeID)
  719.     {
  720.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasMailingCampaignType', [$mailingCampaignTypeID]);
  721.         return parent::hasMailingCampaignType($mailingCampaignTypeID);
  722.     }
  723.     /**
  724.      * {@inheritDoc}
  725.      */
  726.     public function getUserVisits()
  727.     {
  728.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUserVisits', []);
  729.         return parent::getUserVisits();
  730.     }
  731.     /**
  732.      * {@inheritDoc}
  733.      */
  734.     public function getToken()
  735.     {
  736.         $this->__initializer__ && $this->__initializer__->__invoke($this'getToken', []);
  737.         return parent::getToken();
  738.     }
  739.     /**
  740.      * {@inheritDoc}
  741.      */
  742.     public function setToken($token)
  743.     {
  744.         $this->__initializer__ && $this->__initializer__->__invoke($this'setToken', [$token]);
  745.         return parent::setToken($token);
  746.     }
  747.     /**
  748.      * {@inheritDoc}
  749.      */
  750.     public function getProperties()
  751.     {
  752.         $this->__initializer__ && $this->__initializer__->__invoke($this'getProperties', []);
  753.         return parent::getProperties();
  754.     }
  755.     /**
  756.      * {@inheritDoc}
  757.      */
  758.     public function addProperty(\Slivki\Entity\UserProperty $userProperty)
  759.     {
  760.         $this->__initializer__ && $this->__initializer__->__invoke($this'addProperty', [$userProperty]);
  761.         return parent::addProperty($userProperty);
  762.     }
  763.     /**
  764.      * {@inheritDoc}
  765.      */
  766.     public function getPropertyByName($propertyName)
  767.     {
  768.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPropertyByName', [$propertyName]);
  769.         return parent::getPropertyByName($propertyName);
  770.     }
  771.     /**
  772.      * {@inheritDoc}
  773.      */
  774.     public function getOffers()
  775.     {
  776.         $this->__initializer__ && $this->__initializer__->__invoke($this'getOffers', []);
  777.         return parent::getOffers();
  778.     }
  779.     /**
  780.      * {@inheritDoc}
  781.      */
  782.     public function addOffer(\Slivki\Entity\Offer $offer)
  783.     {
  784.         $this->__initializer__ && $this->__initializer__->__invoke($this'addOffer', [$offer]);
  785.         return parent::addOffer($offer);
  786.     }
  787.     /**
  788.      * {@inheritDoc}
  789.      */
  790.     public function isTotallyUnsubscribed()
  791.     {
  792.         $this->__initializer__ && $this->__initializer__->__invoke($this'isTotallyUnsubscribed', []);
  793.         return parent::isTotallyUnsubscribed();
  794.     }
  795.     /**
  796.      * {@inheritDoc}
  797.      */
  798.     public function setTotallyUnsubscribed($totallyUnsubscribed)
  799.     {
  800.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTotallyUnsubscribed', [$totallyUnsubscribed]);
  801.         return parent::setTotallyUnsubscribed($totallyUnsubscribed);
  802.     }
  803.     /**
  804.      * {@inheritDoc}
  805.      */
  806.     public function getCommentsOnReview()
  807.     {
  808.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCommentsOnReview', []);
  809.         return parent::getCommentsOnReview();
  810.     }
  811.     /**
  812.      * {@inheritDoc}
  813.      */
  814.     public function getFavouriteCategories()
  815.     {
  816.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFavouriteCategories', []);
  817.         return parent::getFavouriteCategories();
  818.     }
  819.     /**
  820.      * {@inheritDoc}
  821.      */
  822.     public function getDirectors()
  823.     {
  824.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDirectors', []);
  825.         return parent::getDirectors();
  826.     }
  827.     /**
  828.      * {@inheritDoc}
  829.      */
  830.     public function getNotActiveDirectors()
  831.     {
  832.         $this->__initializer__ && $this->__initializer__->__invoke($this'getNotActiveDirectors', []);
  833.         return parent::getNotActiveDirectors();
  834.     }
  835.     /**
  836.      * {@inheritDoc}
  837.      */
  838.     public function getDirectorsByStatus($status)
  839.     {
  840.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDirectorsByStatus', [$status]);
  841.         return parent::getDirectorsByStatus($status);
  842.     }
  843.     /**
  844.      * {@inheritDoc}
  845.      */
  846.     public function isSeenMicrophoneTooltip()
  847.     {
  848.         $this->__initializer__ && $this->__initializer__->__invoke($this'isSeenMicrophoneTooltip', []);
  849.         return parent::isSeenMicrophoneTooltip();
  850.     }
  851.     /**
  852.      * {@inheritDoc}
  853.      */
  854.     public function setSeenMicrophoneTooltip()
  855.     {
  856.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSeenMicrophoneTooltip', []);
  857.         return parent::setSeenMicrophoneTooltip();
  858.     }
  859.     /**
  860.      * {@inheritDoc}
  861.      */
  862.     public function getProfileImageMedia()
  863.     {
  864.         $this->__initializer__ && $this->__initializer__->__invoke($this'getProfileImageMedia', []);
  865.         return parent::getProfileImageMedia();
  866.     }
  867.     /**
  868.      * {@inheritDoc}
  869.      */
  870.     public function setProfileImageMedia(\Slivki\Entity\Media\ProfileImageMedia $media)
  871.     {
  872.         $this->__initializer__ && $this->__initializer__->__invoke($this'setProfileImageMedia', [$media]);
  873.         return parent::setProfileImageMedia($media);
  874.     }
  875.     /**
  876.      * {@inheritDoc}
  877.      */
  878.     public function isWantRatePopup()
  879.     {
  880.         $this->__initializer__ && $this->__initializer__->__invoke($this'isWantRatePopup', []);
  881.         return parent::isWantRatePopup();
  882.     }
  883.     /**
  884.      * {@inheritDoc}
  885.      */
  886.     public function setNotShowRatePopupTill($till)
  887.     {
  888.         $this->__initializer__ && $this->__initializer__->__invoke($this'setNotShowRatePopupTill', [$till]);
  889.         return parent::setNotShowRatePopupTill($till);
  890.     }
  891.     /**
  892.      * {@inheritDoc}
  893.      */
  894.     public function isGeoLocationAccepted()
  895.     {
  896.         $this->__initializer__ && $this->__initializer__->__invoke($this'isGeoLocationAccepted', []);
  897.         return parent::isGeoLocationAccepted();
  898.     }
  899.     /**
  900.      * {@inheritDoc}
  901.      */
  902.     public function setGeoLocationAccepted($geoLocationAcceppted)
  903.     {
  904.         $this->__initializer__ && $this->__initializer__->__invoke($this'setGeoLocationAccepted', [$geoLocationAcceppted]);
  905.         return parent::setGeoLocationAccepted($geoLocationAcceppted);
  906.     }
  907.     /**
  908.      * {@inheritDoc}
  909.      */
  910.     public function getGeoLocatioin()
  911.     {
  912.         $this->__initializer__ && $this->__initializer__->__invoke($this'getGeoLocatioin', []);
  913.         return parent::getGeoLocatioin();
  914.     }
  915.     /**
  916.      * {@inheritDoc}
  917.      */
  918.     public function setGeoLocation($geoLocation)
  919.     {
  920.         $this->__initializer__ && $this->__initializer__->__invoke($this'setGeoLocation', [$geoLocation]);
  921.         return parent::setGeoLocation($geoLocation);
  922.     }
  923.     /**
  924.      * {@inheritDoc}
  925.      */
  926.     public function getReferer()
  927.     {
  928.         $this->__initializer__ && $this->__initializer__->__invoke($this'getReferer', []);
  929.         return parent::getReferer();
  930.     }
  931.     /**
  932.      * {@inheritDoc}
  933.      */
  934.     public function setReferer($referer)
  935.     {
  936.         $this->__initializer__ && $this->__initializer__->__invoke($this'setReferer', [$referer]);
  937.         return parent::setReferer($referer);
  938.     }
  939.     /**
  940.      * {@inheritDoc}
  941.      */
  942.     public function getReferrals()
  943.     {
  944.         $this->__initializer__ && $this->__initializer__->__invoke($this'getReferrals', []);
  945.         return parent::getReferrals();
  946.     }
  947.     /**
  948.      * {@inheritDoc}
  949.      */
  950.     public function addReferral(\Slivki\Entity\Referral $referral)
  951.     {
  952.         $this->__initializer__ && $this->__initializer__->__invoke($this'addReferral', [$referral]);
  953.         return parent::addReferral($referral);
  954.     }
  955.     /**
  956.      * {@inheritDoc}
  957.      */
  958.     public function getCreditCards()
  959.     {
  960.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCreditCards', []);
  961.         return parent::getCreditCards();
  962.     }
  963.     /**
  964.      * {@inheritDoc}
  965.      */
  966.     public function getActiveCreditCards()
  967.     {
  968.         $this->__initializer__ && $this->__initializer__->__invoke($this'getActiveCreditCards', []);
  969.         return parent::getActiveCreditCards();
  970.     }
  971.     /**
  972.      * {@inheritDoc}
  973.      */
  974.     public function getActiveCreditCardsCount()
  975.     {
  976.         $this->__initializer__ && $this->__initializer__->__invoke($this'getActiveCreditCardsCount', []);
  977.         return parent::getActiveCreditCardsCount();
  978.     }
  979.     /**
  980.      * {@inheritDoc}
  981.      */
  982.     public function addCreditCard(\Slivki\Entity\CreditCard $creditCard)
  983.     {
  984.         $this->__initializer__ && $this->__initializer__->__invoke($this'addCreditCard', [$creditCard]);
  985.         return parent::addCreditCard($creditCard);
  986.     }
  987.     /**
  988.      * {@inheritDoc}
  989.      */
  990.     public function setCreditCardAsDefault(\Slivki\Entity\CreditCard $creditCard)
  991.     {
  992.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCreditCardAsDefault', [$creditCard]);
  993.         return parent::setCreditCardAsDefault($creditCard);
  994.     }
  995.     /**
  996.      * {@inheritDoc}
  997.      */
  998.     public function addAuthToken(\Slivki\Entity\AuthToken $authToken)
  999.     {
  1000.         $this->__initializer__ && $this->__initializer__->__invoke($this'addAuthToken', [$authToken]);
  1001.         return parent::addAuthToken($authToken);
  1002.     }
  1003.     /**
  1004.      * {@inheritDoc}
  1005.      */
  1006.     public function serialize()
  1007.     {
  1008.         $this->__initializer__ && $this->__initializer__->__invoke($this'serialize', []);
  1009.         return parent::serialize();
  1010.     }
  1011.     /**
  1012.      * {@inheritDoc}
  1013.      */
  1014.     public function unserialize($serialized)
  1015.     {
  1016.         $this->__initializer__ && $this->__initializer__->__invoke($this'unserialize', [$serialized]);
  1017.         return parent::unserialize($serialized);
  1018.     }
  1019.     /**
  1020.      * {@inheritDoc}
  1021.      */
  1022.     public function getSaleProductBasket()
  1023.     {
  1024.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSaleProductBasket', []);
  1025.         return parent::getSaleProductBasket();
  1026.     }
  1027.     /**
  1028.      * {@inheritDoc}
  1029.      */
  1030.     public function addSaleProductBasket(\Slivki\Entity\SaleProductBasket $basket)
  1031.     {
  1032.         $this->__initializer__ && $this->__initializer__->__invoke($this'addSaleProductBasket', [$basket]);
  1033.         return parent::addSaleProductBasket($basket);
  1034.     }
  1035.     /**
  1036.      * {@inheritDoc}
  1037.      */
  1038.     public function getRoles()
  1039.     {
  1040.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRoles', []);
  1041.         return parent::getRoles();
  1042.     }
  1043.     /**
  1044.      * {@inheritDoc}
  1045.      */
  1046.     public function getActiveRoles()
  1047.     {
  1048.         $this->__initializer__ && $this->__initializer__->__invoke($this'getActiveRoles', []);
  1049.         return parent::getActiveRoles();
  1050.     }
  1051.     /**
  1052.      * {@inheritDoc}
  1053.      */
  1054.     public function hasRole($groupID)
  1055.     {
  1056.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasRole', [$groupID]);
  1057.         return parent::hasRole($groupID);
  1058.     }
  1059.     /**
  1060.      * {@inheritDoc}
  1061.      */
  1062.     public function hasRoleByName($groupName)
  1063.     {
  1064.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasRoleByName', [$groupName]);
  1065.         return parent::hasRoleByName($groupName);
  1066.     }
  1067.     /**
  1068.      * {@inheritDoc}
  1069.      */
  1070.     public function addRole(\Slivki\Entity\UserGroup $userGroup)
  1071.     {
  1072.         $this->__initializer__ && $this->__initializer__->__invoke($this'addRole', [$userGroup]);
  1073.         return parent::addRole($userGroup);
  1074.     }
  1075.     /**
  1076.      * {@inheritDoc}
  1077.      */
  1078.     public function getSalt()
  1079.     {
  1080.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSalt', []);
  1081.         return parent::getSalt();
  1082.     }
  1083.     /**
  1084.      * {@inheritDoc}
  1085.      */
  1086.     public function getUsername()
  1087.     {
  1088.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUsername', []);
  1089.         return parent::getUsername();
  1090.     }
  1091.     /**
  1092.      * {@inheritDoc}
  1093.      */
  1094.     public function eraseCredentials()
  1095.     {
  1096.         $this->__initializer__ && $this->__initializer__->__invoke($this'eraseCredentials', []);
  1097.         return parent::eraseCredentials();
  1098.     }
  1099.     /**
  1100.      * {@inheritDoc}
  1101.      */
  1102.     public function isAccountNonExpired()
  1103.     {
  1104.         $this->__initializer__ && $this->__initializer__->__invoke($this'isAccountNonExpired', []);
  1105.         return parent::isAccountNonExpired();
  1106.     }
  1107.     /**
  1108.      * {@inheritDoc}
  1109.      */
  1110.     public function isAccountNonLocked()
  1111.     {
  1112.         $this->__initializer__ && $this->__initializer__->__invoke($this'isAccountNonLocked', []);
  1113.         return parent::isAccountNonLocked();
  1114.     }
  1115.     /**
  1116.      * {@inheritDoc}
  1117.      */
  1118.     public function isCredentialsNonExpired()
  1119.     {
  1120.         $this->__initializer__ && $this->__initializer__->__invoke($this'isCredentialsNonExpired', []);
  1121.         return parent::isCredentialsNonExpired();
  1122.     }
  1123.     /**
  1124.      * {@inheritDoc}
  1125.      */
  1126.     public function isEnabled()
  1127.     {
  1128.         $this->__initializer__ && $this->__initializer__->__invoke($this'isEnabled', []);
  1129.         return parent::isEnabled();
  1130.     }
  1131.     /**
  1132.      * {@inheritDoc}
  1133.      */
  1134.     public function getPublicists()
  1135.     {
  1136.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPublicists', []);
  1137.         return parent::getPublicists();
  1138.     }
  1139.     /**
  1140.      * {@inheritDoc}
  1141.      */
  1142.     public function addPublicists(\Slivki\Entity\Sale $sale NULL)
  1143.     {
  1144.         $this->__initializer__ && $this->__initializer__->__invoke($this'addPublicists', [$sale]);
  1145.         return parent::addPublicists($sale);
  1146.     }
  1147.     /**
  1148.      * {@inheritDoc}
  1149.      */
  1150.     public function removePublicist(\Slivki\Entity\Sale $sale)
  1151.     {
  1152.         $this->__initializer__ && $this->__initializer__->__invoke($this'removePublicist', [$sale]);
  1153.         return parent::removePublicist($sale);
  1154.     }
  1155.     /**
  1156.      * {@inheritDoc}
  1157.      */
  1158.     public function getCreatedOffers()
  1159.     {
  1160.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCreatedOffers', []);
  1161.         return parent::getCreatedOffers();
  1162.     }
  1163.     /**
  1164.      * {@inheritDoc}
  1165.      */
  1166.     public function addCreatedOffer(\Slivki\Entity\Offer $createdOffer)
  1167.     {
  1168.         $this->__initializer__ && $this->__initializer__->__invoke($this'addCreatedOffer', [$createdOffer]);
  1169.         return parent::addCreatedOffer($createdOffer);
  1170.     }
  1171.     /**
  1172.      * {@inheritDoc}
  1173.      */
  1174.     public function getCreatedSales()
  1175.     {
  1176.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCreatedSales', []);
  1177.         return parent::getCreatedSales();
  1178.     }
  1179.     /**
  1180.      * {@inheritDoc}
  1181.      */
  1182.     public function addCreatedSale(\Slivki\Entity\Sale $createdSale)
  1183.     {
  1184.         $this->__initializer__ && $this->__initializer__->__invoke($this'addCreatedSale', [$createdSale]);
  1185.         return parent::addCreatedSale($createdSale);
  1186.     }
  1187.     /**
  1188.      * {@inheritDoc}
  1189.      */
  1190.     public function getTelegramID()
  1191.     {
  1192.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTelegramID', []);
  1193.         return parent::getTelegramID();
  1194.     }
  1195.     /**
  1196.      * {@inheritDoc}
  1197.      */
  1198.     public function setTelegramID($telegramID)
  1199.     {
  1200.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTelegramID', [$telegramID]);
  1201.         return parent::setTelegramID($telegramID);
  1202.     }
  1203.     /**
  1204.      * {@inheritDoc}
  1205.      */
  1206.     public function getSiteID()
  1207.     {
  1208.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSiteID', []);
  1209.         return parent::getSiteID();
  1210.     }
  1211.     /**
  1212.      * {@inheritDoc}
  1213.      */
  1214.     public function setSiteID($siteID)
  1215.     {
  1216.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSiteID', [$siteID]);
  1217.         return parent::setSiteID($siteID);
  1218.     }
  1219.     /**
  1220.      * {@inheritDoc}
  1221.      */
  1222.     public function isMogilevMailingBonusUsed()
  1223.     {
  1224.         $this->__initializer__ && $this->__initializer__->__invoke($this'isMogilevMailingBonusUsed', []);
  1225.         return parent::isMogilevMailingBonusUsed();
  1226.     }
  1227.     /**
  1228.      * {@inheritDoc}
  1229.      */
  1230.     public function setMogilevMailingBonusUsed($mogilevMailingBonusUsed)
  1231.     {
  1232.         $this->__initializer__ && $this->__initializer__->__invoke($this'setMogilevMailingBonusUsed', [$mogilevMailingBonusUsed]);
  1233.         return parent::setMogilevMailingBonusUsed($mogilevMailingBonusUsed);
  1234.     }
  1235.     /**
  1236.      * {@inheritDoc}
  1237.      */
  1238.     public function isGomelMailingBonusUsed()
  1239.     {
  1240.         $this->__initializer__ && $this->__initializer__->__invoke($this'isGomelMailingBonusUsed', []);
  1241.         return parent::isGomelMailingBonusUsed();
  1242.     }
  1243.     /**
  1244.      * {@inheritDoc}
  1245.      */
  1246.     public function setGomelMailingBonusUsed($gomelMailingBonusUsed)
  1247.     {
  1248.         $this->__initializer__ && $this->__initializer__->__invoke($this'setGomelMailingBonusUsed', [$gomelMailingBonusUsed]);
  1249.         return parent::setGomelMailingBonusUsed($gomelMailingBonusUsed);
  1250.     }
  1251.     /**
  1252.      * {@inheritDoc}
  1253.      */
  1254.     public function getPasswordHasherName(): string
  1255.     {
  1256.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPasswordHasherName', []);
  1257.         return parent::getPasswordHasherName();
  1258.     }
  1259.     /**
  1260.      * {@inheritDoc}
  1261.      */
  1262.     public function isEqualTo(\Symfony\Component\Security\Core\User\UserInterface $user)
  1263.     {
  1264.         $this->__initializer__ && $this->__initializer__->__invoke($this'isEqualTo', [$user]);
  1265.         return parent::isEqualTo($user);
  1266.     }
  1267.     /**
  1268.      * {@inheritDoc}
  1269.      */
  1270.     public function getBatchCodesCount(): int
  1271.     {
  1272.         $this->__initializer__ && $this->__initializer__->__invoke($this'getBatchCodesCount', []);
  1273.         return parent::getBatchCodesCount();
  1274.     }
  1275.     /**
  1276.      * {@inheritDoc}
  1277.      */
  1278.     public function setBatchCodesCount(int $batchCodesCount): void
  1279.     {
  1280.         $this->__initializer__ && $this->__initializer__->__invoke($this'setBatchCodesCount', [$batchCodesCount]);
  1281.         parent::setBatchCodesCount($batchCodesCount);
  1282.     }
  1283.     /**
  1284.      * {@inheritDoc}
  1285.      */
  1286.     public function isBalanceAllowed(float $amount): bool
  1287.     {
  1288.         $this->__initializer__ && $this->__initializer__->__invoke($this'isBalanceAllowed', [$amount]);
  1289.         return parent::isBalanceAllowed($amount);
  1290.     }
  1291.     /**
  1292.      * {@inheritDoc}
  1293.      */
  1294.     public function decreaseBalance(float $amount): void
  1295.     {
  1296.         $this->__initializer__ && $this->__initializer__->__invoke($this'decreaseBalance', [$amount]);
  1297.         parent::decreaseBalance($amount);
  1298.     }
  1299.     /**
  1300.      * {@inheritDoc}
  1301.      */
  1302.     public function isBatchCodesAllowed(): bool
  1303.     {
  1304.         $this->__initializer__ && $this->__initializer__->__invoke($this'isBatchCodesAllowed', []);
  1305.         return parent::isBatchCodesAllowed();
  1306.     }
  1307.     /**
  1308.      * {@inheritDoc}
  1309.      */
  1310.     public function resetBatchCodesCount(): void
  1311.     {
  1312.         $this->__initializer__ && $this->__initializer__->__invoke($this'resetBatchCodesCount', []);
  1313.         parent::resetBatchCodesCount();
  1314.     }
  1315.     /**
  1316.      * {@inheritDoc}
  1317.      */
  1318.     public function increaseBatchCodes(int $codesCount): void
  1319.     {
  1320.         $this->__initializer__ && $this->__initializer__->__invoke($this'increaseBatchCodes', [$codesCount]);
  1321.         parent::increaseBatchCodes($codesCount);
  1322.     }
  1323.     /**
  1324.      * {@inheritDoc}
  1325.      */
  1326.     public function decreaseBatchCodes(int $codeCount): void
  1327.     {
  1328.         $this->__initializer__ && $this->__initializer__->__invoke($this'decreaseBatchCodes', [$codeCount]);
  1329.         parent::decreaseBatchCodes($codeCount);
  1330.     }
  1331.     /**
  1332.      * {@inheritDoc}
  1333.      */
  1334.     public function hasPhoneNumber(): bool
  1335.     {
  1336.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasPhoneNumber', []);
  1337.         return parent::hasPhoneNumber();
  1338.     }
  1339.     /**
  1340.      * {@inheritDoc}
  1341.      */
  1342.     public function getConfirmedPhoneNumber(): ?string
  1343.     {
  1344.         $this->__initializer__ && $this->__initializer__->__invoke($this'getConfirmedPhoneNumber', []);
  1345.         return parent::getConfirmedPhoneNumber();
  1346.     }
  1347.     /**
  1348.      * {@inheritDoc}
  1349.      */
  1350.     public function getUserIdentifier(): string
  1351.     {
  1352.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUserIdentifier', []);
  1353.         return parent::getUserIdentifier();
  1354.     }
  1355.     /**
  1356.      * {@inheritDoc}
  1357.      */
  1358.     public function __toString(): string
  1359.     {
  1360.         $this->__initializer__ && $this->__initializer__->__invoke($this'__toString', []);
  1361.         return parent::__toString();
  1362.     }
  1363.     /**
  1364.      * {@inheritDoc}
  1365.      */
  1366.     public function balanceValidate(float $amount): void
  1367.     {
  1368.         $this->__initializer__ && $this->__initializer__->__invoke($this'balanceValidate', [$amount]);
  1369.         parent::balanceValidate($amount);
  1370.     }
  1371.     /**
  1372.      * {@inheritDoc}
  1373.      */
  1374.     public function batchCodesBalanceValidate(int $codesCount): void
  1375.     {
  1376.         $this->__initializer__ && $this->__initializer__->__invoke($this'batchCodesBalanceValidate', [$codesCount]);
  1377.         parent::batchCodesBalanceValidate($codesCount);
  1378.     }
  1379.     /**
  1380.      * {@inheritDoc}
  1381.      */
  1382.     public function getMoneyBalance(): float
  1383.     {
  1384.         $this->__initializer__ && $this->__initializer__->__invoke($this'getMoneyBalance', []);
  1385.         return parent::getMoneyBalance();
  1386.     }
  1387.     /**
  1388.      * {@inheritDoc}
  1389.      */
  1390.     public function increaseMoneyBalance(float $amount): void
  1391.     {
  1392.         $this->__initializer__ && $this->__initializer__->__invoke($this'increaseMoneyBalance', [$amount]);
  1393.         parent::increaseMoneyBalance($amount);
  1394.     }
  1395.     /**
  1396.      * {@inheritDoc}
  1397.      */
  1398.     public function decreaseMoneyBalance(float $amount): void
  1399.     {
  1400.         $this->__initializer__ && $this->__initializer__->__invoke($this'decreaseMoneyBalance', [$amount]);
  1401.         parent::decreaseMoneyBalance($amount);
  1402.     }
  1403.     /**
  1404.      * {@inheritDoc}
  1405.      */
  1406.     public function validateMoneyBalance(float $amount): void
  1407.     {
  1408.         $this->__initializer__ && $this->__initializer__->__invoke($this'validateMoneyBalance', [$amount]);
  1409.         parent::validateMoneyBalance($amount);
  1410.     }
  1411.     /**
  1412.      * {@inheritDoc}
  1413.      */
  1414.     public function getFullBalance(): float
  1415.     {
  1416.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFullBalance', []);
  1417.         return parent::getFullBalance();
  1418.     }
  1419.     /**
  1420.      * {@inheritDoc}
  1421.      */
  1422.     public function validateFullBalance($amount): void
  1423.     {
  1424.         $this->__initializer__ && $this->__initializer__->__invoke($this'validateFullBalance', [$amount]);
  1425.         parent::validateFullBalance($amount);
  1426.     }
  1427.     /**
  1428.      * {@inheritDoc}
  1429.      */
  1430.     public function payCodes(float $amount): void
  1431.     {
  1432.         $this->__initializer__ && $this->__initializer__->__invoke($this'payCodes', [$amount]);
  1433.         parent::payCodes($amount);
  1434.     }
  1435.     /**
  1436.      * {@inheritDoc}
  1437.      */
  1438.     public function payOrder(float $amountOrderfloat $amountCode): void
  1439.     {
  1440.         $this->__initializer__ && $this->__initializer__->__invoke($this'payOrder', [$amountOrder$amountCode]);
  1441.         parent::payOrder($amountOrder$amountCode);
  1442.     }
  1443.     /**
  1444.      * {@inheritDoc}
  1445.      */
  1446.     public function increaseUserBonusBalance(float $amount): void
  1447.     {
  1448.         $this->__initializer__ && $this->__initializer__->__invoke($this'increaseUserBonusBalance', [$amount]);
  1449.         parent::increaseUserBonusBalance($amount);
  1450.     }
  1451.     /**
  1452.      * {@inheritDoc}
  1453.      */
  1454.     public function getEvents(): array
  1455.     {
  1456.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEvents', []);
  1457.         return parent::getEvents();
  1458.     }
  1459.     /**
  1460.      * {@inheritDoc}
  1461.      */
  1462.     public function getDecreaseBalanceEvents(): array
  1463.     {
  1464.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDecreaseBalanceEvents', []);
  1465.         return parent::getDecreaseBalanceEvents();
  1466.     }
  1467.     /**
  1468.      * {@inheritDoc}
  1469.      */
  1470.     public function getTransitionID()
  1471.     {
  1472.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTransitionID', []);
  1473.         return parent::getTransitionID();
  1474.     }
  1475.     /**
  1476.      * {@inheritDoc}
  1477.      */
  1478.     public function setTransitionID($transitionID)
  1479.     {
  1480.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTransitionID', [$transitionID]);
  1481.         return parent::setTransitionID($transitionID);
  1482.     }
  1483.     /**
  1484.      * {@inheritDoc}
  1485.      */
  1486.     public function getID()
  1487.     {
  1488.         $this->__initializer__ && $this->__initializer__->__invoke($this'getID', []);
  1489.         return parent::getID();
  1490.     }
  1491.     /**
  1492.      * {@inheritDoc}
  1493.      */
  1494.     public function setID($ID)
  1495.     {
  1496.         $this->__initializer__ && $this->__initializer__->__invoke($this'setID', [$ID]);
  1497.         return parent::setID($ID);
  1498.     }
  1499. }