var/cache/test/doctrine/orm/Proxies/__CG__CmsTenantBundleEntityTenant.php line 315

Open in your IDE?
  1. <?php
  2. namespace Proxies\__CG__\Cms\TenantBundle\Entity;
  3. /**
  4.  * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
  5.  */
  6. class Tenant extends \Cms\TenantBundle\Entity\Tenant 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__''name''slug''status''emailsDisplay''locale''policy''disqusId''googleToken''stage''teamworkTasklist''latitude''longitude''redirects''redirectCodes''debugging''products''adaSettings''type''hubspotId''weglotId''locales''id''uid''createdAt''updatedAt''touchedAt''' "\0" 'Cms\\TenantBundle\\Entity\\Tenant' "\0" 'timestampable''data_custom0''data_custom1''data_custom2''data_custom3''authenticationTypes''classlinkCustomerId''cleverCustomerId''gg4lCustomerId''googleCustomerId''microsoftCustomerId''ulid''_ulid'];
  53.         }
  54.         return ['__isInitialized__''name''slug''status''emailsDisplay''locale''policy''disqusId''googleToken''stage''teamworkTasklist''latitude''longitude''redirects''redirectCodes''debugging''products''adaSettings''type''hubspotId''weglotId''locales''id''uid''createdAt''updatedAt''touchedAt''' "\0" 'Cms\\TenantBundle\\Entity\\Tenant' "\0" 'timestampable''data_custom0''data_custom1''data_custom2''data_custom3''authenticationTypes''classlinkCustomerId''cleverCustomerId''gg4lCustomerId''googleCustomerId''microsoftCustomerId''ulid''_ulid'];
  55.     }
  56.     /**
  57.      * 
  58.      */
  59.     public function __wakeup()
  60.     {
  61.         if ( ! $this->__isInitialized__) {
  62.             $this->__initializer__ = function (Tenant $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 hasRedirectCodes(): bool
  151.     {
  152.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasRedirectCodes', []);
  153.         return parent::hasRedirectCodes();
  154.     }
  155.     /**
  156.      * {@inheritDoc}
  157.      */
  158.     public function setRedirectCodes(bool $redirectCodes): \Cms\TenantBundle\Entity\Tenant
  159.     {
  160.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRedirectCodes', [$redirectCodes]);
  161.         return parent::setRedirectCodes($redirectCodes);
  162.     }
  163.     /**
  164.      * {@inheritDoc}
  165.      */
  166.     public function getWeglotId(): ?string
  167.     {
  168.         $this->__initializer__ && $this->__initializer__->__invoke($this'getWeglotId', []);
  169.         return parent::getWeglotId();
  170.     }
  171.     /**
  172.      * {@inheritDoc}
  173.      */
  174.     public function setWeglotId(?string $weglotId): \Cms\TenantBundle\Entity\Tenant
  175.     {
  176.         $this->__initializer__ && $this->__initializer__->__invoke($this'setWeglotId', [$weglotId]);
  177.         return parent::setWeglotId($weglotId);
  178.     }
  179.     /**
  180.      * {@inheritDoc}
  181.      */
  182.     public function getEmailsDisplay(): int
  183.     {
  184.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEmailsDisplay', []);
  185.         return parent::getEmailsDisplay();
  186.     }
  187.     /**
  188.      * {@inheritDoc}
  189.      */
  190.     public function setEmailsDisplay(int $value): \Cms\TenantBundle\Entity\Tenant
  191.     {
  192.         $this->__initializer__ && $this->__initializer__->__invoke($this'setEmailsDisplay', [$value]);
  193.         return parent::setEmailsDisplay($value);
  194.     }
  195.     /**
  196.      * {@inheritDoc}
  197.      */
  198.     public function isEmailsDisplay($value): bool
  199.     {
  200.         $this->__initializer__ && $this->__initializer__->__invoke($this'isEmailsDisplay', [$value]);
  201.         return parent::isEmailsDisplay($value);
  202.     }
  203.     /**
  204.      * {@inheritDoc}
  205.      */
  206.     public function getType()
  207.     {
  208.         $this->__initializer__ && $this->__initializer__->__invoke($this'getType', []);
  209.         return parent::getType();
  210.     }
  211.     /**
  212.      * {@inheritDoc}
  213.      */
  214.     public function setType(\Cms\TenantBundle\Entity\TenantTypeEmbeddable $value)
  215.     {
  216.         $this->__initializer__ && $this->__initializer__->__invoke($this'setType', [$value]);
  217.         return parent::setType($value);
  218.     }
  219.     /**
  220.      * {@inheritDoc}
  221.      */
  222.     public function getProducts()
  223.     {
  224.         $this->__initializer__ && $this->__initializer__->__invoke($this'getProducts', []);
  225.         return parent::getProducts();
  226.     }
  227.     /**
  228.      * {@inheritDoc}
  229.      */
  230.     public function setProducts(\Cms\TenantBundle\Model\ProductsBitwise $value)
  231.     {
  232.         $this->__initializer__ && $this->__initializer__->__invoke($this'setProducts', [$value]);
  233.         return parent::setProducts($value);
  234.     }
  235.     /**
  236.      * {@inheritDoc}
  237.      */
  238.     public function getName()
  239.     {
  240.         $this->__initializer__ && $this->__initializer__->__invoke($this'getName', []);
  241.         return parent::getName();
  242.     }
  243.     /**
  244.      * {@inheritDoc}
  245.      */
  246.     public function getSlug()
  247.     {
  248.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSlug', []);
  249.         return parent::getSlug();
  250.     }
  251.     /**
  252.      * {@inheritDoc}
  253.      */
  254.     public function getStatus()
  255.     {
  256.         $this->__initializer__ && $this->__initializer__->__invoke($this'getStatus', []);
  257.         return parent::getStatus();
  258.     }
  259.     /**
  260.      * {@inheritDoc}
  261.      */
  262.     public function setName($value)
  263.     {
  264.         $this->__initializer__ && $this->__initializer__->__invoke($this'setName', [$value]);
  265.         return parent::setName($value);
  266.     }
  267.     /**
  268.      * {@inheritDoc}
  269.      */
  270.     public function setSlug($value)
  271.     {
  272.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSlug', [$value]);
  273.         return parent::setSlug($value);
  274.     }
  275.     /**
  276.      * {@inheritDoc}
  277.      */
  278.     public function setStatus($value)
  279.     {
  280.         $this->__initializer__ && $this->__initializer__->__invoke($this'setStatus', [$value]);
  281.         return parent::setStatus($value);
  282.     }
  283.     /**
  284.      * {@inheritDoc}
  285.      */
  286.     public function getLocale()
  287.     {
  288.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLocale', []);
  289.         return parent::getLocale();
  290.     }
  291.     /**
  292.      * {@inheritDoc}
  293.      */
  294.     public function setLocale(\Cms\CoreBundle\Entity\LocaleSettings $locale)
  295.     {
  296.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLocale', [$locale]);
  297.         return parent::setLocale($locale);
  298.     }
  299.     /**
  300.      * {@inheritDoc}
  301.      */
  302.     public function getPolicy()
  303.     {
  304.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPolicy', []);
  305.         return parent::getPolicy();
  306.     }
  307.     /**
  308.      * {@inheritDoc}
  309.      */
  310.     public function setPolicy(\DateTime $policy)
  311.     {
  312.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPolicy', [$policy]);
  313.         return parent::setPolicy($policy);
  314.     }
  315.     /**
  316.      * {@inheritDoc}
  317.      */
  318.     public function getDisqusId()
  319.     {
  320.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDisqusId', []);
  321.         return parent::getDisqusId();
  322.     }
  323.     /**
  324.      * {@inheritDoc}
  325.      */
  326.     public function setDisqusId($disqusId)
  327.     {
  328.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDisqusId', [$disqusId]);
  329.         return parent::setDisqusId($disqusId);
  330.     }
  331.     /**
  332.      * {@inheritDoc}
  333.      */
  334.     public function getGoogleToken()
  335.     {
  336.         $this->__initializer__ && $this->__initializer__->__invoke($this'getGoogleToken', []);
  337.         return parent::getGoogleToken();
  338.     }
  339.     /**
  340.      * {@inheritDoc}
  341.      */
  342.     public function setGoogleToken($value NULL)
  343.     {
  344.         $this->__initializer__ && $this->__initializer__->__invoke($this'setGoogleToken', [$value]);
  345.         return parent::setGoogleToken($value);
  346.     }
  347.     /**
  348.      * {@inheritDoc}
  349.      */
  350.     public function getStage()
  351.     {
  352.         $this->__initializer__ && $this->__initializer__->__invoke($this'getStage', []);
  353.         return parent::getStage();
  354.     }
  355.     /**
  356.      * {@inheritDoc}
  357.      */
  358.     public function setStage($stage)
  359.     {
  360.         $this->__initializer__ && $this->__initializer__->__invoke($this'setStage', [$stage]);
  361.         return parent::setStage($stage);
  362.     }
  363.     /**
  364.      * {@inheritDoc}
  365.      */
  366.     public function getTeamworkTasklist()
  367.     {
  368.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTeamworkTasklist', []);
  369.         return parent::getTeamworkTasklist();
  370.     }
  371.     /**
  372.      * {@inheritDoc}
  373.      */
  374.     public function setTeamworkTasklist($teamworkTasklist)
  375.     {
  376.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTeamworkTasklist', [$teamworkTasklist]);
  377.         return parent::setTeamworkTasklist($teamworkTasklist);
  378.     }
  379.     /**
  380.      * {@inheritDoc}
  381.      */
  382.     public function getLatitude()
  383.     {
  384.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLatitude', []);
  385.         return parent::getLatitude();
  386.     }
  387.     /**
  388.      * {@inheritDoc}
  389.      */
  390.     public function setLatitude($value)
  391.     {
  392.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLatitude', [$value]);
  393.         return parent::setLatitude($value);
  394.     }
  395.     /**
  396.      * {@inheritDoc}
  397.      */
  398.     public function getLongitude()
  399.     {
  400.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLongitude', []);
  401.         return parent::getLongitude();
  402.     }
  403.     /**
  404.      * {@inheritDoc}
  405.      */
  406.     public function setLongitude($value)
  407.     {
  408.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLongitude', [$value]);
  409.         return parent::setLongitude($value);
  410.     }
  411.     /**
  412.      * {@inheritDoc}
  413.      */
  414.     public function getRedirects()
  415.     {
  416.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRedirects', []);
  417.         return parent::getRedirects();
  418.     }
  419.     /**
  420.      * {@inheritDoc}
  421.      */
  422.     public function setRedirects($value)
  423.     {
  424.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRedirects', [$value]);
  425.         return parent::setRedirects($value);
  426.     }
  427.     /**
  428.      * {@inheritDoc}
  429.      */
  430.     public function getDebugging()
  431.     {
  432.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDebugging', []);
  433.         return parent::getDebugging();
  434.     }
  435.     /**
  436.      * {@inheritDoc}
  437.      */
  438.     public function setDebugging($value)
  439.     {
  440.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDebugging', [$value]);
  441.         return parent::setDebugging($value);
  442.     }
  443.     /**
  444.      * {@inheritDoc}
  445.      */
  446.     public function getAdaSettings()
  447.     {
  448.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAdaSettings', []);
  449.         return parent::getAdaSettings();
  450.     }
  451.     /**
  452.      * {@inheritDoc}
  453.      */
  454.     public function getHubspotId(): ?string
  455.     {
  456.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHubspotId', []);
  457.         return parent::getHubspotId();
  458.     }
  459.     /**
  460.      * {@inheritDoc}
  461.      */
  462.     public function setHubspotId(?string $hubspotId): \Cms\TenantBundle\Entity\Tenant
  463.     {
  464.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHubspotId', [$hubspotId]);
  465.         return parent::setHubspotId($hubspotId);
  466.     }
  467.     /**
  468.      * {@inheritDoc}
  469.      */
  470.     public function getTenant(): ?\Cms\TenantBundle\Entity\Tenant
  471.     {
  472.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTenant', []);
  473.         return parent::getTenant();
  474.     }
  475.     /**
  476.      * {@inheritDoc}
  477.      */
  478.     public function isSchoolNow(): bool
  479.     {
  480.         $this->__initializer__ && $this->__initializer__->__invoke($this'isSchoolNow', []);
  481.         return parent::isSchoolNow();
  482.     }
  483.     /**
  484.      * {@inheritDoc}
  485.      */
  486.     public function getLocales(): array
  487.     {
  488.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLocales', []);
  489.         return parent::getLocales();
  490.     }
  491.     /**
  492.      * {@inheritDoc}
  493.      */
  494.     public function setLocales(array $locales): \Cms\TenantBundle\Entity\Tenant
  495.     {
  496.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLocales', [$locales]);
  497.         return parent::setLocales($locales);
  498.     }
  499.     /**
  500.      * {@inheritDoc}
  501.      */
  502.     public function isPrimaryLocale(string $locale): bool
  503.     {
  504.         $this->__initializer__ && $this->__initializer__->__invoke($this'isPrimaryLocale', [$locale]);
  505.         return parent::isPrimaryLocale($locale);
  506.     }
  507.     /**
  508.      * {@inheritDoc}
  509.      */
  510.     public function getPrimaryLocale(): string
  511.     {
  512.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPrimaryLocale', []);
  513.         return parent::getPrimaryLocale();
  514.     }
  515.     /**
  516.      * {@inheritDoc}
  517.      */
  518.     public function setPrimaryLocale(string $locale): \Cms\TenantBundle\Entity\Tenant
  519.     {
  520.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPrimaryLocale', [$locale]);
  521.         return parent::setPrimaryLocale($locale);
  522.     }
  523.     /**
  524.      * {@inheritDoc}
  525.      */
  526.     public function isSecondaryLocale(string $locale): bool
  527.     {
  528.         $this->__initializer__ && $this->__initializer__->__invoke($this'isSecondaryLocale', [$locale]);
  529.         return parent::isSecondaryLocale($locale);
  530.     }
  531.     /**
  532.      * {@inheritDoc}
  533.      */
  534.     public function getSecondaryLocales(): array
  535.     {
  536.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSecondaryLocales', []);
  537.         return parent::getSecondaryLocales();
  538.     }
  539.     /**
  540.      * {@inheritDoc}
  541.      */
  542.     public function getTimezone(): string
  543.     {
  544.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTimezone', []);
  545.         return parent::getTimezone();
  546.     }
  547.     /**
  548.      * {@inheritDoc}
  549.      */
  550.     public function getId()
  551.     {
  552.         if ($this->__isInitialized__ === false) {
  553.             return (int)  parent::getId();
  554.         }
  555.         $this->__initializer__ && $this->__initializer__->__invoke($this'getId', []);
  556.         return parent::getId();
  557.     }
  558.     /**
  559.      * {@inheritDoc}
  560.      */
  561.     public function getUid()
  562.     {
  563.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUid', []);
  564.         return parent::getUid();
  565.     }
  566.     /**
  567.      * {@inheritDoc}
  568.      */
  569.     public function getUidString(): ?string
  570.     {
  571.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUidString', []);
  572.         return parent::getUidString();
  573.     }
  574.     /**
  575.      * {@inheritDoc}
  576.      */
  577.     public function getUidBytes(): ?string
  578.     {
  579.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUidBytes', []);
  580.         return parent::getUidBytes();
  581.     }
  582.     /**
  583.      * {@inheritDoc}
  584.      */
  585.     public function getUidHex(): ?string
  586.     {
  587.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUidHex', []);
  588.         return parent::getUidHex();
  589.     }
  590.     /**
  591.      * {@inheritDoc}
  592.      */
  593.     public function initUid(\Ramsey\Uuid\UuidInterface $value)
  594.     {
  595.         $this->__initializer__ && $this->__initializer__->__invoke($this'initUid', [$value]);
  596.         return parent::initUid($value);
  597.     }
  598.     /**
  599.      * {@inheritDoc}
  600.      */
  601.     public function forceUid(\Ramsey\Uuid\UuidInterface $value)
  602.     {
  603.         $this->__initializer__ && $this->__initializer__->__invoke($this'forceUid', [$value]);
  604.         return parent::forceUid($value);
  605.     }
  606.     /**
  607.      * {@inheritDoc}
  608.      */
  609.     public function forceId(int $value): \Cms\TenantBundle\Entity\Tenant
  610.     {
  611.         $this->__initializer__ && $this->__initializer__->__invoke($this'forceId', [$value]);
  612.         return parent::forceId($value);
  613.     }
  614.     /**
  615.      * {@inheritDoc}
  616.      */
  617.     public function resetIdentifiable()
  618.     {
  619.         $this->__initializer__ && $this->__initializer__->__invoke($this'resetIdentifiable', []);
  620.         return parent::resetIdentifiable();
  621.     }
  622.     /**
  623.      * {@inheritDoc}
  624.      */
  625.     public function isUpdated(): bool
  626.     {
  627.         $this->__initializer__ && $this->__initializer__->__invoke($this'isUpdated', []);
  628.         return parent::isUpdated();
  629.     }
  630.     /**
  631.      * {@inheritDoc}
  632.      */
  633.     public function isCreated(): bool
  634.     {
  635.         $this->__initializer__ && $this->__initializer__->__invoke($this'isCreated', []);
  636.         return parent::isCreated();
  637.     }
  638.     /**
  639.      * {@inheritDoc}
  640.      */
  641.     public function getTimestampedAt(): ?\DateTime
  642.     {
  643.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTimestampedAt', []);
  644.         return parent::getTimestampedAt();
  645.     }
  646.     /**
  647.      * {@inheritDoc}
  648.      */
  649.     public function resetTimestampable(): \Cms\TenantBundle\Entity\Tenant
  650.     {
  651.         $this->__initializer__ && $this->__initializer__->__invoke($this'resetTimestampable', []);
  652.         return parent::resetTimestampable();
  653.     }
  654.     /**
  655.      * {@inheritDoc}
  656.      */
  657.     public function autoCreatedAt(bool $value NULL): bool
  658.     {
  659.         $this->__initializer__ && $this->__initializer__->__invoke($this'autoCreatedAt', [$value]);
  660.         return parent::autoCreatedAt($value);
  661.     }
  662.     /**
  663.      * {@inheritDoc}
  664.      */
  665.     public function autoUpdatedAt(bool $value NULL): bool
  666.     {
  667.         $this->__initializer__ && $this->__initializer__->__invoke($this'autoUpdatedAt', [$value]);
  668.         return parent::autoUpdatedAt($value);
  669.     }
  670.     /**
  671.      * {@inheritDoc}
  672.      */
  673.     public function getCreatedAt(): ?\DateTime
  674.     {
  675.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCreatedAt', []);
  676.         return parent::getCreatedAt();
  677.     }
  678.     /**
  679.      * {@inheritDoc}
  680.      */
  681.     public function setCreatedAt(\DateTime $value NULLbool $auto true): \Cms\TenantBundle\Entity\Tenant
  682.     {
  683.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCreatedAt', [$value$auto]);
  684.         return parent::setCreatedAt($value$auto);
  685.     }
  686.     /**
  687.      * {@inheritDoc}
  688.      */
  689.     public function getUpdatedAt(): ?\DateTime
  690.     {
  691.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUpdatedAt', []);
  692.         return parent::getUpdatedAt();
  693.     }
  694.     /**
  695.      * {@inheritDoc}
  696.      */
  697.     public function setUpdatedAt(\DateTime $value NULLbool $auto true): \Cms\TenantBundle\Entity\Tenant
  698.     {
  699.         $this->__initializer__ && $this->__initializer__->__invoke($this'setUpdatedAt', [$value$auto]);
  700.         return parent::setUpdatedAt($value$auto);
  701.     }
  702.     /**
  703.      * {@inheritDoc}
  704.      */
  705.     public function observeUpdatedAt(bool $toggle): \Cms\TenantBundle\Entity\Tenant
  706.     {
  707.         $this->__initializer__ && $this->__initializer__->__invoke($this'observeUpdatedAt', [$toggle]);
  708.         return parent::observeUpdatedAt($toggle);
  709.     }
  710.     /**
  711.      * {@inheritDoc}
  712.      */
  713.     public function getTouchedAt(): ?\DateTime
  714.     {
  715.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTouchedAt', []);
  716.         return parent::getTouchedAt();
  717.     }
  718.     /**
  719.      * {@inheritDoc}
  720.      */
  721.     public function setTouchedAt(\DateTime $value NULL): \Cms\TenantBundle\Entity\Tenant
  722.     {
  723.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTouchedAt', [$value]);
  724.         return parent::setTouchedAt($value);
  725.     }
  726.     /**
  727.      * {@inheritDoc}
  728.      */
  729.     public function getCustom0()
  730.     {
  731.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCustom0', []);
  732.         return parent::getCustom0();
  733.     }
  734.     /**
  735.      * {@inheritDoc}
  736.      */
  737.     public function setCustom0($value)
  738.     {
  739.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCustom0', [$value]);
  740.         return parent::setCustom0($value);
  741.     }
  742.     /**
  743.      * {@inheritDoc}
  744.      */
  745.     public function getCustom1()
  746.     {
  747.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCustom1', []);
  748.         return parent::getCustom1();
  749.     }
  750.     /**
  751.      * {@inheritDoc}
  752.      */
  753.     public function setCustom1($value)
  754.     {
  755.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCustom1', [$value]);
  756.         return parent::setCustom1($value);
  757.     }
  758.     /**
  759.      * {@inheritDoc}
  760.      */
  761.     public function getCustom2()
  762.     {
  763.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCustom2', []);
  764.         return parent::getCustom2();
  765.     }
  766.     /**
  767.      * {@inheritDoc}
  768.      */
  769.     public function setCustom2($value)
  770.     {
  771.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCustom2', [$value]);
  772.         return parent::setCustom2($value);
  773.     }
  774.     /**
  775.      * {@inheritDoc}
  776.      */
  777.     public function getCustom3()
  778.     {
  779.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCustom3', []);
  780.         return parent::getCustom3();
  781.     }
  782.     /**
  783.      * {@inheritDoc}
  784.      */
  785.     public function setCustom3($value)
  786.     {
  787.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCustom3', [$value]);
  788.         return parent::setCustom3($value);
  789.     }
  790.     /**
  791.      * {@inheritDoc}
  792.      */
  793.     public function getAuthenticationTypes(): \Platform\SecurityBundle\Model\OAuth\AuthenticationTypesBitwise
  794.     {
  795.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAuthenticationTypes', []);
  796.         return parent::getAuthenticationTypes();
  797.     }
  798.     /**
  799.      * {@inheritDoc}
  800.      */
  801.     public function setAuthenticationTypes(\Platform\SecurityBundle\Model\OAuth\AuthenticationTypesBitwise $value): \Cms\TenantBundle\Entity\Tenant
  802.     {
  803.         $this->__initializer__ && $this->__initializer__->__invoke($this'setAuthenticationTypes', [$value]);
  804.         return parent::setAuthenticationTypes($value);
  805.     }
  806.     /**
  807.      * {@inheritDoc}
  808.      */
  809.     public function getClasslinkCustomerId(): ?string
  810.     {
  811.         $this->__initializer__ && $this->__initializer__->__invoke($this'getClasslinkCustomerId', []);
  812.         return parent::getClasslinkCustomerId();
  813.     }
  814.     /**
  815.      * {@inheritDoc}
  816.      */
  817.     public function setClasslinkCustomerId(?string $value): \Cms\TenantBundle\Entity\Tenant
  818.     {
  819.         $this->__initializer__ && $this->__initializer__->__invoke($this'setClasslinkCustomerId', [$value]);
  820.         return parent::setClasslinkCustomerId($value);
  821.     }
  822.     /**
  823.      * {@inheritDoc}
  824.      */
  825.     public function getCleverCustomerId(): ?string
  826.     {
  827.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCleverCustomerId', []);
  828.         return parent::getCleverCustomerId();
  829.     }
  830.     /**
  831.      * {@inheritDoc}
  832.      */
  833.     public function setCleverCustomerId(?string $value): \Cms\TenantBundle\Entity\Tenant
  834.     {
  835.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCleverCustomerId', [$value]);
  836.         return parent::setCleverCustomerId($value);
  837.     }
  838.     /**
  839.      * {@inheritDoc}
  840.      */
  841.     public function getGg4lCustomerId(): ?string
  842.     {
  843.         $this->__initializer__ && $this->__initializer__->__invoke($this'getGg4lCustomerId', []);
  844.         return parent::getGg4lCustomerId();
  845.     }
  846.     /**
  847.      * {@inheritDoc}
  848.      */
  849.     public function setGg4lCustomerId(?string $value): \Cms\TenantBundle\Entity\Tenant
  850.     {
  851.         $this->__initializer__ && $this->__initializer__->__invoke($this'setGg4lCustomerId', [$value]);
  852.         return parent::setGg4lCustomerId($value);
  853.     }
  854.     /**
  855.      * {@inheritDoc}
  856.      */
  857.     public function getMicrosoftCustomerId(): ?string
  858.     {
  859.         $this->__initializer__ && $this->__initializer__->__invoke($this'getMicrosoftCustomerId', []);
  860.         return parent::getMicrosoftCustomerId();
  861.     }
  862.     /**
  863.      * {@inheritDoc}
  864.      */
  865.     public function setMicrosoftCustomerId(?string $value): \Cms\TenantBundle\Entity\Tenant
  866.     {
  867.         $this->__initializer__ && $this->__initializer__->__invoke($this'setMicrosoftCustomerId', [$value]);
  868.         return parent::setMicrosoftCustomerId($value);
  869.     }
  870.     /**
  871.      * {@inheritDoc}
  872.      */
  873.     public function getGoogleCustomerId(): ?string
  874.     {
  875.         $this->__initializer__ && $this->__initializer__->__invoke($this'getGoogleCustomerId', []);
  876.         return parent::getGoogleCustomerId();
  877.     }
  878.     /**
  879.      * {@inheritDoc}
  880.      */
  881.     public function setGoogleCustomerId(?string $value): \Cms\TenantBundle\Entity\Tenant
  882.     {
  883.         $this->__initializer__ && $this->__initializer__->__invoke($this'setGoogleCustomerId', [$value]);
  884.         return parent::setGoogleCustomerId($value);
  885.     }
  886.     /**
  887.      * {@inheritDoc}
  888.      */
  889.     public function getUlidAsString(): ?string
  890.     {
  891.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUlidAsString', []);
  892.         return parent::getUlidAsString();
  893.     }
  894.     /**
  895.      * {@inheritDoc}
  896.      */
  897.     public function getUlid(): ?\Ulid\Ulid
  898.     {
  899.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUlid', []);
  900.         return parent::getUlid();
  901.     }
  902.     /**
  903.      * {@inheritDoc}
  904.      */
  905.     public function setUlid($ulidbool $overwrite false): \Cms\TenantBundle\Entity\Tenant
  906.     {
  907.         $this->__initializer__ && $this->__initializer__->__invoke($this'setUlid', [$ulid$overwrite]);
  908.         return parent::setUlid($ulid$overwrite);
  909.     }
  910.     /**
  911.      * {@inheritDoc}
  912.      */
  913.     public function getUlidTime(): ?string
  914.     {
  915.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUlidTime', []);
  916.         return parent::getUlidTime();
  917.     }
  918.     /**
  919.      * {@inheritDoc}
  920.      */
  921.     public function getUlidRandomness(): ?string
  922.     {
  923.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUlidRandomness', []);
  924.         return parent::getUlidRandomness();
  925.     }
  926.     /**
  927.      * {@inheritDoc}
  928.      */
  929.     public function getUlidTimestamp(): ?int
  930.     {
  931.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUlidTimestamp', []);
  932.         return parent::getUlidTimestamp();
  933.     }
  934. }