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

Open in your IDE?
  1. <?php
  2. namespace Proxies\__CG__\App\Entity;
  3. /**
  4.  * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
  5.  */
  6. class Page extends \App\Entity\Page 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__''id''type''cachingLevel''globalTitle''globalDescription''title''description''contentProperties''locale''translations''master''slices''paths''breadcrumb''status''updateComment''published''lastPublisher''hasBeenPublished''expired''tags''menuItems''created''updated''author''lastUpdater''template''visibility''seoTitle''seoDescription''noIndex''noFollow''siteMap''ogTitle''ogType''ogDescription''ogImage''twitterTitle''twitterDescription''twitterCard''twitterImage'];
  53.         }
  54.         return ['__isInitialized__''id''type''cachingLevel''globalTitle''globalDescription''title''description''contentProperties''locale''translations''master''slices''paths''breadcrumb''status''updateComment''published''lastPublisher''hasBeenPublished''expired''tags''menuItems''created''updated''author''lastUpdater''template''visibility''seoTitle''seoDescription''noIndex''noFollow''siteMap''ogTitle''ogType''ogDescription''ogImage''twitterTitle''twitterDescription''twitterCard''twitterImage'];
  55.     }
  56.     /**
  57.      * 
  58.      */
  59.     public function __wakeup()
  60.     {
  61.         if ( ! $this->__isInitialized__) {
  62.             $this->__initializer__ = function (Page $proxy) {
  63.                 $proxy->__setInitializer(null);
  64.                 $proxy->__setCloner(null);
  65.                 $existingProperties get_object_vars($proxy);
  66.                 foreach ($proxy::$lazyPropertiesDefaults as $property => $defaultValue) {
  67.                     if ( ! array_key_exists($property$existingProperties)) {
  68.                         $proxy->$property $defaultValue;
  69.                     }
  70.                 }
  71.             };
  72.         }
  73.     }
  74.     /**
  75.      * 
  76.      */
  77.     public function __clone()
  78.     {
  79.         $this->__cloner__ && $this->__cloner__->__invoke($this'__clone', []);
  80.     }
  81.     /**
  82.      * Forces initialization of the proxy
  83.      */
  84.     public function __load(): void
  85.     {
  86.         $this->__initializer__ && $this->__initializer__->__invoke($this'__load', []);
  87.     }
  88.     /**
  89.      * {@inheritDoc}
  90.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  91.      */
  92.     public function __isInitialized(): bool
  93.     {
  94.         return $this->__isInitialized__;
  95.     }
  96.     /**
  97.      * {@inheritDoc}
  98.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  99.      */
  100.     public function __setInitialized($initialized): void
  101.     {
  102.         $this->__isInitialized__ $initialized;
  103.     }
  104.     /**
  105.      * {@inheritDoc}
  106.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  107.      */
  108.     public function __setInitializer(\Closure $initializer null): void
  109.     {
  110.         $this->__initializer__ $initializer;
  111.     }
  112.     /**
  113.      * {@inheritDoc}
  114.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  115.      */
  116.     public function __getInitializer(): ?\Closure
  117.     {
  118.         return $this->__initializer__;
  119.     }
  120.     /**
  121.      * {@inheritDoc}
  122.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  123.      */
  124.     public function __setCloner(\Closure $cloner null): void
  125.     {
  126.         $this->__cloner__ $cloner;
  127.     }
  128.     /**
  129.      * {@inheritDoc}
  130.      * @internal generated method: use only when explicitly handling proxy specific cloning logic
  131.      */
  132.     public function __getCloner(): ?\Closure
  133.     {
  134.         return $this->__cloner__;
  135.     }
  136.     /**
  137.      * {@inheritDoc}
  138.      * @internal generated method: use only when explicitly handling proxy specific loading logic
  139.      * @deprecated no longer in use - generated code now relies on internal components rather than generated public API
  140.      * @static
  141.      */
  142.     public function __getLazyProperties(): array
  143.     {
  144.         return self::$lazyPropertiesDefaults;
  145.     }
  146.     
  147.     /**
  148.      * {@inheritDoc}
  149.      */
  150.     public function __toString(): string
  151.     {
  152.         $this->__initializer__ && $this->__initializer__->__invoke($this'__toString', []);
  153.         return parent::__toString();
  154.     }
  155.     /**
  156.      * {@inheritDoc}
  157.      */
  158.     public function setId(int $id): void
  159.     {
  160.         $this->__initializer__ && $this->__initializer__->__invoke($this'setId', [$id]);
  161.         parent::setId($id);
  162.     }
  163.     /**
  164.      * {@inheritDoc}
  165.      */
  166.     public function getId(): int
  167.     {
  168.         if ($this->__isInitialized__ === false) {
  169.             return (int)  parent::getId();
  170.         }
  171.         $this->__initializer__ && $this->__initializer__->__invoke($this'getId', []);
  172.         return parent::getId();
  173.     }
  174.     /**
  175.      * {@inheritDoc}
  176.      */
  177.     public function getType(): ?string
  178.     {
  179.         $this->__initializer__ && $this->__initializer__->__invoke($this'getType', []);
  180.         return parent::getType();
  181.     }
  182.     /**
  183.      * {@inheritDoc}
  184.      */
  185.     public function setType(string $type): void
  186.     {
  187.         $this->__initializer__ && $this->__initializer__->__invoke($this'setType', [$type]);
  188.         parent::setType($type);
  189.     }
  190.     /**
  191.      * {@inheritDoc}
  192.      */
  193.     public function isMulti(): bool
  194.     {
  195.         $this->__initializer__ && $this->__initializer__->__invoke($this'isMulti', []);
  196.         return parent::isMulti();
  197.     }
  198.     /**
  199.      * {@inheritDoc}
  200.      */
  201.     public function getCachingLevel(): string
  202.     {
  203.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCachingLevel', []);
  204.         return parent::getCachingLevel();
  205.     }
  206.     /**
  207.      * {@inheritDoc}
  208.      */
  209.     public function setCachingLevel(string $cachingLevel): void
  210.     {
  211.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCachingLevel', [$cachingLevel]);
  212.         parent::setCachingLevel($cachingLevel);
  213.     }
  214.     /**
  215.      * {@inheritDoc}
  216.      */
  217.     public function getGlobalTitle(): string
  218.     {
  219.         $this->__initializer__ && $this->__initializer__->__invoke($this'getGlobalTitle', []);
  220.         return parent::getGlobalTitle();
  221.     }
  222.     /**
  223.      * {@inheritDoc}
  224.      */
  225.     public function setGlobalTitle(string $globalTitle): void
  226.     {
  227.         $this->__initializer__ && $this->__initializer__->__invoke($this'setGlobalTitle', [$globalTitle]);
  228.         parent::setGlobalTitle($globalTitle);
  229.     }
  230.     /**
  231.      * {@inheritDoc}
  232.      */
  233.     public function getGlobalDescription(): ?string
  234.     {
  235.         $this->__initializer__ && $this->__initializer__->__invoke($this'getGlobalDescription', []);
  236.         return parent::getGlobalDescription();
  237.     }
  238.     /**
  239.      * {@inheritDoc}
  240.      */
  241.     public function setGlobalDescription(?string $globalDescription): void
  242.     {
  243.         $this->__initializer__ && $this->__initializer__->__invoke($this'setGlobalDescription', [$globalDescription]);
  244.         parent::setGlobalDescription($globalDescription);
  245.     }
  246.     /**
  247.      * {@inheritDoc}
  248.      */
  249.     public function getTitle(): string
  250.     {
  251.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTitle', []);
  252.         return parent::getTitle();
  253.     }
  254.     /**
  255.      * {@inheritDoc}
  256.      */
  257.     public function setTitle(string $title): void
  258.     {
  259.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTitle', [$title]);
  260.         parent::setTitle($title);
  261.     }
  262.     /**
  263.      * {@inheritDoc}
  264.      */
  265.     public function getDescription(): ?string
  266.     {
  267.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDescription', []);
  268.         return parent::getDescription();
  269.     }
  270.     /**
  271.      * {@inheritDoc}
  272.      */
  273.     public function setDescription(?string $description): void
  274.     {
  275.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDescription', [$description]);
  276.         parent::setDescription($description);
  277.     }
  278.     /**
  279.      * {@inheritDoc}
  280.      */
  281.     public function getContentProperties(): \App\Model\ContentProperties
  282.     {
  283.         $this->__initializer__ && $this->__initializer__->__invoke($this'getContentProperties', []);
  284.         return parent::getContentProperties();
  285.     }
  286.     /**
  287.      * {@inheritDoc}
  288.      */
  289.     public function setContentProperties(\App\Model\ContentProperties $contentProperties): void
  290.     {
  291.         $this->__initializer__ && $this->__initializer__->__invoke($this'setContentProperties', [$contentProperties]);
  292.         parent::setContentProperties($contentProperties);
  293.     }
  294.     /**
  295.      * {@inheritDoc}
  296.      */
  297.     public function addSlice(\App\Model\Slice $slice): \App\Entity\Page
  298.     {
  299.         $this->__initializer__ && $this->__initializer__->__invoke($this'addSlice', [$slice]);
  300.         return parent::addSlice($slice);
  301.     }
  302.     /**
  303.      * {@inheritDoc}
  304.      */
  305.     public function removeSlice(\App\Model\Slice $slice): void
  306.     {
  307.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeSlice', [$slice]);
  308.         parent::removeSlice($slice);
  309.     }
  310.     /**
  311.      * {@inheritDoc}
  312.      */
  313.     public function getSlices(): ?array
  314.     {
  315.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSlices', []);
  316.         return parent::getSlices();
  317.     }
  318.     /**
  319.      * {@inheritDoc}
  320.      */
  321.     public function getSlicesFront(): array
  322.     {
  323.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSlicesFront', []);
  324.         return parent::getSlicesFront();
  325.     }
  326.     /**
  327.      * {@inheritDoc}
  328.      */
  329.     public function getSlicesType(): ?array
  330.     {
  331.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSlicesType', []);
  332.         return parent::getSlicesType();
  333.     }
  334.     /**
  335.      * {@inheritDoc}
  336.      */
  337.     public function setSlices(array $slices): void
  338.     {
  339.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSlices', [$slices]);
  340.         parent::setSlices($slices);
  341.     }
  342.     /**
  343.      * {@inheritDoc}
  344.      */
  345.     public function removeAllSlices(): void
  346.     {
  347.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeAllSlices', []);
  348.         parent::removeAllSlices();
  349.     }
  350.     /**
  351.      * {@inheritDoc}
  352.      */
  353.     public function import(array $databool $partial false): void
  354.     {
  355.         $this->__initializer__ && $this->__initializer__->__invoke($this'import', [$data$partial]);
  356.         parent::import($data$partial);
  357.     }
  358.     /**
  359.      * {@inheritDoc}
  360.      */
  361.     public function export(string $locale NULL): array
  362.     {
  363.         $this->__initializer__ && $this->__initializer__->__invoke($this'export', [$locale]);
  364.         return parent::export($locale);
  365.     }
  366.     /**
  367.      * {@inheritDoc}
  368.      */
  369.     public function getArrayModel(bool $partial false): array
  370.     {
  371.         $this->__initializer__ && $this->__initializer__->__invoke($this'getArrayModel', [$partial]);
  372.         return parent::getArrayModel($partial);
  373.     }
  374.     /**
  375.      * {@inheritDoc}
  376.      */
  377.     public function getLocale(): string
  378.     {
  379.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLocale', []);
  380.         return parent::getLocale();
  381.     }
  382.     /**
  383.      * {@inheritDoc}
  384.      */
  385.     public function setLocale(string $locale): void
  386.     {
  387.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLocale', [$locale]);
  388.         parent::setLocale($locale);
  389.     }
  390.     /**
  391.      * {@inheritDoc}
  392.      */
  393.     public function getExistingLocales(): array
  394.     {
  395.         $this->__initializer__ && $this->__initializer__->__invoke($this'getExistingLocales', []);
  396.         return parent::getExistingLocales();
  397.     }
  398.     /**
  399.      * {@inheritDoc}
  400.      */
  401.     public function getTranslations(): \Doctrine\Common\Collections\Collection
  402.     {
  403.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTranslations', []);
  404.         return parent::getTranslations();
  405.     }
  406.     /**
  407.      * {@inheritDoc}
  408.      */
  409.     public function getTranslation(string $locale): mixed
  410.     {
  411.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTranslation', [$locale]);
  412.         return parent::getTranslation($locale);
  413.     }
  414.     /**
  415.      * {@inheritDoc}
  416.      */
  417.     public function addTranslation(object $translation): void
  418.     {
  419.         $this->__initializer__ && $this->__initializer__->__invoke($this'addTranslation', [$translation]);
  420.         parent::addTranslation($translation);
  421.     }
  422.     /**
  423.      * {@inheritDoc}
  424.      */
  425.     public function removeTranslation(object $translation): void
  426.     {
  427.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeTranslation', [$translation]);
  428.         parent::removeTranslation($translation);
  429.     }
  430.     /**
  431.      * {@inheritDoc}
  432.      */
  433.     public function removeAllTranslation(): void
  434.     {
  435.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeAllTranslation', []);
  436.         parent::removeAllTranslation();
  437.     }
  438.     /**
  439.      * {@inheritDoc}
  440.      */
  441.     public function isMaster(): bool
  442.     {
  443.         $this->__initializer__ && $this->__initializer__->__invoke($this'isMaster', []);
  444.         return parent::isMaster();
  445.     }
  446.     /**
  447.      * {@inheritDoc}
  448.      */
  449.     public function getMaster()
  450.     {
  451.         $this->__initializer__ && $this->__initializer__->__invoke($this'getMaster', []);
  452.         return parent::getMaster();
  453.     }
  454.     /**
  455.      * {@inheritDoc}
  456.      */
  457.     public function setMaster(?object $master): void
  458.     {
  459.         $this->__initializer__ && $this->__initializer__->__invoke($this'setMaster', [$master]);
  460.         parent::setMaster($master);
  461.     }
  462.     /**
  463.      * {@inheritDoc}
  464.      */
  465.     public function addPath(\App\Entity\Path $path): \App\Entity\Page
  466.     {
  467.         $this->__initializer__ && $this->__initializer__->__invoke($this'addPath', [$path]);
  468.         return parent::addPath($path);
  469.     }
  470.     /**
  471.      * {@inheritDoc}
  472.      */
  473.     public function removePath(\App\Entity\Path $path): void
  474.     {
  475.         $this->__initializer__ && $this->__initializer__->__invoke($this'removePath', [$path]);
  476.         parent::removePath($path);
  477.     }
  478.     /**
  479.      * {@inheritDoc}
  480.      */
  481.     public function getPaths(bool $string false): \Doctrine\Common\Collections\ArrayCollection|\Doctrine\Common\Collections\Collection|array
  482.     {
  483.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPaths', [$string]);
  484.         return parent::getPaths($string);
  485.     }
  486.     /**
  487.      * {@inheritDoc}
  488.      */
  489.     public function getRedirections(): array
  490.     {
  491.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRedirections', []);
  492.         return parent::getRedirections();
  493.     }
  494.     /**
  495.      * {@inheritDoc}
  496.      */
  497.     public function getCurrentPath(bool $string true): \App\Entity\Path|string|null
  498.     {
  499.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCurrentPath', [$string]);
  500.         return parent::getCurrentPath($string);
  501.     }
  502.     /**
  503.      * {@inheritDoc}
  504.      */
  505.     public function hasPath(string $checkPath): ?\App\Entity\Path
  506.     {
  507.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasPath', [$checkPath]);
  508.         return parent::hasPath($checkPath);
  509.     }
  510.     /**
  511.      * {@inheritDoc}
  512.      */
  513.     public function getBreadcrumb(): ?array
  514.     {
  515.         $this->__initializer__ && $this->__initializer__->__invoke($this'getBreadcrumb', []);
  516.         return parent::getBreadcrumb();
  517.     }
  518.     /**
  519.      * {@inheritDoc}
  520.      */
  521.     public function setBreadcrumb($breadcrumb): void
  522.     {
  523.         $this->__initializer__ && $this->__initializer__->__invoke($this'setBreadcrumb', [$breadcrumb]);
  524.         parent::setBreadcrumb($breadcrumb);
  525.     }
  526.     /**
  527.      * {@inheritDoc}
  528.      */
  529.     public function isVisible(): bool
  530.     {
  531.         $this->__initializer__ && $this->__initializer__->__invoke($this'isVisible', []);
  532.         return parent::isVisible();
  533.     }
  534.     /**
  535.      * {@inheritDoc}
  536.      */
  537.     public function isPublishedSoon(): bool
  538.     {
  539.         $this->__initializer__ && $this->__initializer__->__invoke($this'isPublishedSoon', []);
  540.         return parent::isPublishedSoon();
  541.     }
  542.     /**
  543.      * {@inheritDoc}
  544.      */
  545.     public function isExpiredSoon(): bool
  546.     {
  547.         $this->__initializer__ && $this->__initializer__->__invoke($this'isExpiredSoon', []);
  548.         return parent::isExpiredSoon();
  549.     }
  550.     /**
  551.      * {@inheritDoc}
  552.      */
  553.     public function getStatus(): string
  554.     {
  555.         $this->__initializer__ && $this->__initializer__->__invoke($this'getStatus', []);
  556.         return parent::getStatus();
  557.     }
  558.     /**
  559.      * {@inheritDoc}
  560.      */
  561.     public function setStatus($status): void
  562.     {
  563.         $this->__initializer__ && $this->__initializer__->__invoke($this'setStatus', [$status]);
  564.         parent::setStatus($status);
  565.     }
  566.     /**
  567.      * {@inheritDoc}
  568.      */
  569.     public function getUpdateComment(): ?string
  570.     {
  571.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUpdateComment', []);
  572.         return parent::getUpdateComment();
  573.     }
  574.     /**
  575.      * {@inheritDoc}
  576.      */
  577.     public function setUpdateComment(?string $updateComment): void
  578.     {
  579.         $this->__initializer__ && $this->__initializer__->__invoke($this'setUpdateComment', [$updateComment]);
  580.         parent::setUpdateComment($updateComment);
  581.     }
  582.     /**
  583.      * {@inheritDoc}
  584.      */
  585.     public function getPublished(): ?\DateTime
  586.     {
  587.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPublished', []);
  588.         return parent::getPublished();
  589.     }
  590.     /**
  591.      * {@inheritDoc}
  592.      */
  593.     public function setPublished(\DateTime $published NULL): void
  594.     {
  595.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPublished', [$published]);
  596.         parent::setPublished($published);
  597.     }
  598.     /**
  599.      * {@inheritDoc}
  600.      */
  601.     public function getLastPublisher(): ?\App\Entity\BackUser
  602.     {
  603.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLastPublisher', []);
  604.         return parent::getLastPublisher();
  605.     }
  606.     /**
  607.      * {@inheritDoc}
  608.      */
  609.     public function setLastPublisher(\App\Entity\BackUser $lastPublisher NULL): void
  610.     {
  611.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLastPublisher', [$lastPublisher]);
  612.         parent::setLastPublisher($lastPublisher);
  613.     }
  614.     /**
  615.      * {@inheritDoc}
  616.      */
  617.     public function updatePublisher(\App\Entity\BackUser $lastPublisher): bool
  618.     {
  619.         $this->__initializer__ && $this->__initializer__->__invoke($this'updatePublisher', [$lastPublisher]);
  620.         return parent::updatePublisher($lastPublisher);
  621.     }
  622.     /**
  623.      * {@inheritDoc}
  624.      */
  625.     public function getExpired(): ?\DateTime
  626.     {
  627.         $this->__initializer__ && $this->__initializer__->__invoke($this'getExpired', []);
  628.         return parent::getExpired();
  629.     }
  630.     /**
  631.      * {@inheritDoc}
  632.      */
  633.     public function setExpired(\DateTime $expired NULL): void
  634.     {
  635.         $this->__initializer__ && $this->__initializer__->__invoke($this'setExpired', [$expired]);
  636.         parent::setExpired($expired);
  637.     }
  638.     /**
  639.      * {@inheritDoc}
  640.      */
  641.     public function addTag(\App\Entity\Tag $tag): void
  642.     {
  643.         $this->__initializer__ && $this->__initializer__->__invoke($this'addTag', [$tag]);
  644.         parent::addTag($tag);
  645.     }
  646.     /**
  647.      * {@inheritDoc}
  648.      */
  649.     public function removeTag(\App\Entity\Tag $tag): void
  650.     {
  651.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeTag', [$tag]);
  652.         parent::removeTag($tag);
  653.     }
  654.     /**
  655.      * {@inheritDoc}
  656.      */
  657.     public function removeAllTags(string $type): void
  658.     {
  659.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeAllTags', [$type]);
  660.         parent::removeAllTags($type);
  661.     }
  662.     /**
  663.      * {@inheritDoc}
  664.      */
  665.     public function getTags(string $type NULL): \Doctrine\Common\Collections\Collection
  666.     {
  667.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTags', [$type]);
  668.         return parent::getTags($type);
  669.     }
  670.     /**
  671.      * {@inheritDoc}
  672.      */
  673.     public function hasTag(int $tagId): bool
  674.     {
  675.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasTag', [$tagId]);
  676.         return parent::hasTag($tagId);
  677.     }
  678.     /**
  679.      * {@inheritDoc}
  680.      */
  681.     public function addMenuItem(\App\Entity\Menu\Item $item): void
  682.     {
  683.         $this->__initializer__ && $this->__initializer__->__invoke($this'addMenuItem', [$item]);
  684.         parent::addMenuItem($item);
  685.     }
  686.     /**
  687.      * {@inheritDoc}
  688.      */
  689.     public function removeMenuItem(\App\Entity\Menu\Item $item): void
  690.     {
  691.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeMenuItem', [$item]);
  692.         parent::removeMenuItem($item);
  693.     }
  694.     /**
  695.      * {@inheritDoc}
  696.      */
  697.     public function getMenuItems(): \Doctrine\Common\Collections\Collection
  698.     {
  699.         $this->__initializer__ && $this->__initializer__->__invoke($this'getMenuItems', []);
  700.         return parent::getMenuItems();
  701.     }
  702.     /**
  703.      * {@inheritDoc}
  704.      */
  705.     public function cleanJson(): bool
  706.     {
  707.         $this->__initializer__ && $this->__initializer__->__invoke($this'cleanJson', []);
  708.         return parent::cleanJson();
  709.     }
  710.     /**
  711.      * {@inheritDoc}
  712.      */
  713.     public function hasSlicesAllowed(): bool
  714.     {
  715.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasSlicesAllowed', []);
  716.         return parent::hasSlicesAllowed();
  717.     }
  718.     /**
  719.      * {@inheritDoc}
  720.      */
  721.     public function canBeSeen(): bool
  722.     {
  723.         $this->__initializer__ && $this->__initializer__->__invoke($this'canBeSeen', []);
  724.         return parent::canBeSeen();
  725.     }
  726.     /**
  727.      * {@inheritDoc}
  728.      */
  729.     public function getEntityType(): ?string
  730.     {
  731.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEntityType', []);
  732.         return parent::getEntityType();
  733.     }
  734.     /**
  735.      * {@inheritDoc}
  736.      */
  737.     public function getCreated(): \DateTime
  738.     {
  739.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCreated', []);
  740.         return parent::getCreated();
  741.     }
  742.     /**
  743.      * {@inheritDoc}
  744.      */
  745.     public function setCreated(\DateTime $created): void
  746.     {
  747.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCreated', [$created]);
  748.         parent::setCreated($created);
  749.     }
  750.     /**
  751.      * {@inheritDoc}
  752.      */
  753.     public function getUpdated(): \DateTime
  754.     {
  755.         $this->__initializer__ && $this->__initializer__->__invoke($this'getUpdated', []);
  756.         return parent::getUpdated();
  757.     }
  758.     /**
  759.      * {@inheritDoc}
  760.      */
  761.     public function setUpdated(\DateTime $updated): void
  762.     {
  763.         $this->__initializer__ && $this->__initializer__->__invoke($this'setUpdated', [$updated]);
  764.         parent::setUpdated($updated);
  765.     }
  766.     /**
  767.      * {@inheritDoc}
  768.      */
  769.     public function getAuthor(): ?\App\Entity\BackUser
  770.     {
  771.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAuthor', []);
  772.         return parent::getAuthor();
  773.     }
  774.     /**
  775.      * {@inheritDoc}
  776.      */
  777.     public function setAuthor(\App\Entity\BackUser $author NULL): void
  778.     {
  779.         $this->__initializer__ && $this->__initializer__->__invoke($this'setAuthor', [$author]);
  780.         parent::setAuthor($author);
  781.     }
  782.     /**
  783.      * {@inheritDoc}
  784.      */
  785.     public function getLastUpdater(): ?\App\Entity\BackUser
  786.     {
  787.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLastUpdater', []);
  788.         return parent::getLastUpdater();
  789.     }
  790.     /**
  791.      * {@inheritDoc}
  792.      */
  793.     public function setLastUpdater(\App\Entity\BackUser $lastUpdater NULL): void
  794.     {
  795.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLastUpdater', [$lastUpdater]);
  796.         parent::setLastUpdater($lastUpdater);
  797.     }
  798.     /**
  799.      * {@inheritDoc}
  800.      */
  801.     public function getTemplate(): string
  802.     {
  803.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTemplate', []);
  804.         return parent::getTemplate();
  805.     }
  806.     /**
  807.      * {@inheritDoc}
  808.      */
  809.     public function setTemplate(string $templatebool $skip false): void
  810.     {
  811.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTemplate', [$template$skip]);
  812.         parent::setTemplate($template$skip);
  813.     }
  814.     /**
  815.      * {@inheritDoc}
  816.      */
  817.     public function getTemplateArrayModel(): array
  818.     {
  819.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTemplateArrayModel', []);
  820.         return parent::getTemplateArrayModel();
  821.     }
  822.     /**
  823.      * {@inheritDoc}
  824.      */
  825.     public function getVisibilities(): array
  826.     {
  827.         $this->__initializer__ && $this->__initializer__->__invoke($this'getVisibilities', []);
  828.         return parent::getVisibilities();
  829.     }
  830.     /**
  831.      * {@inheritDoc}
  832.      */
  833.     public function setVisibilities(array $visibilities): void
  834.     {
  835.         $this->__initializer__ && $this->__initializer__->__invoke($this'setVisibilities', [$visibilities]);
  836.         parent::setVisibilities($visibilities);
  837.     }
  838.     /**
  839.      * {@inheritDoc}
  840.      */
  841.     public function getVisibility(): string
  842.     {
  843.         $this->__initializer__ && $this->__initializer__->__invoke($this'getVisibility', []);
  844.         return parent::getVisibility();
  845.     }
  846.     /**
  847.      * {@inheritDoc}
  848.      */
  849.     public function setVisibility(string $visibility): void
  850.     {
  851.         $this->__initializer__ && $this->__initializer__->__invoke($this'setVisibility', [$visibility]);
  852.         parent::setVisibility($visibility);
  853.     }
  854.     /**
  855.      * {@inheritDoc}
  856.      */
  857.     public function getVisibilityArrayModel(): array
  858.     {
  859.         $this->__initializer__ && $this->__initializer__->__invoke($this'getVisibilityArrayModel', []);
  860.         return parent::getVisibilityArrayModel();
  861.     }
  862.     /**
  863.      * {@inheritDoc}
  864.      */
  865.     public function getSeoTitle(): ?string
  866.     {
  867.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSeoTitle', []);
  868.         return parent::getSeoTitle();
  869.     }
  870.     /**
  871.      * {@inheritDoc}
  872.      */
  873.     public function setSeoTitle(?string $seoTitle): void
  874.     {
  875.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSeoTitle', [$seoTitle]);
  876.         parent::setSeoTitle($seoTitle);
  877.     }
  878.     /**
  879.      * {@inheritDoc}
  880.      */
  881.     public function getSeoDescription(): ?string
  882.     {
  883.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSeoDescription', []);
  884.         return parent::getSeoDescription();
  885.     }
  886.     /**
  887.      * {@inheritDoc}
  888.      */
  889.     public function setSeoDescription(?string $seoDescription): void
  890.     {
  891.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSeoDescription', [$seoDescription]);
  892.         parent::setSeoDescription($seoDescription);
  893.     }
  894.     /**
  895.      * {@inheritDoc}
  896.      */
  897.     public function getNoIndex(): bool
  898.     {
  899.         $this->__initializer__ && $this->__initializer__->__invoke($this'getNoIndex', []);
  900.         return parent::getNoIndex();
  901.     }
  902.     /**
  903.      * {@inheritDoc}
  904.      */
  905.     public function setNoIndex(bool $noIndex): void
  906.     {
  907.         $this->__initializer__ && $this->__initializer__->__invoke($this'setNoIndex', [$noIndex]);
  908.         parent::setNoIndex($noIndex);
  909.     }
  910.     /**
  911.      * {@inheritDoc}
  912.      */
  913.     public function getNoFollow(): bool
  914.     {
  915.         $this->__initializer__ && $this->__initializer__->__invoke($this'getNoFollow', []);
  916.         return parent::getNoFollow();
  917.     }
  918.     /**
  919.      * {@inheritDoc}
  920.      */
  921.     public function setNoFollow(bool $noFollow): void
  922.     {
  923.         $this->__initializer__ && $this->__initializer__->__invoke($this'setNoFollow', [$noFollow]);
  924.         parent::setNoFollow($noFollow);
  925.     }
  926.     /**
  927.      * {@inheritDoc}
  928.      */
  929.     public function getSiteMap(): bool
  930.     {
  931.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSiteMap', []);
  932.         return parent::getSiteMap();
  933.     }
  934.     /**
  935.      * {@inheritDoc}
  936.      */
  937.     public function setSiteMap(bool $siteMap): void
  938.     {
  939.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSiteMap', [$siteMap]);
  940.         parent::setSiteMap($siteMap);
  941.     }
  942.     /**
  943.      * {@inheritDoc}
  944.      */
  945.     public function getOgTitle(): ?string
  946.     {
  947.         $this->__initializer__ && $this->__initializer__->__invoke($this'getOgTitle', []);
  948.         return parent::getOgTitle();
  949.     }
  950.     /**
  951.      * {@inheritDoc}
  952.      */
  953.     public function setOgTitle(?string $ogTitle): void
  954.     {
  955.         $this->__initializer__ && $this->__initializer__->__invoke($this'setOgTitle', [$ogTitle]);
  956.         parent::setOgTitle($ogTitle);
  957.     }
  958.     /**
  959.      * {@inheritDoc}
  960.      */
  961.     public function getOgType(): ?string
  962.     {
  963.         $this->__initializer__ && $this->__initializer__->__invoke($this'getOgType', []);
  964.         return parent::getOgType();
  965.     }
  966.     /**
  967.      * {@inheritDoc}
  968.      */
  969.     public function setOgType(?string $ogType): void
  970.     {
  971.         $this->__initializer__ && $this->__initializer__->__invoke($this'setOgType', [$ogType]);
  972.         parent::setOgType($ogType);
  973.     }
  974.     /**
  975.      * {@inheritDoc}
  976.      */
  977.     public function getOgDescription(): ?string
  978.     {
  979.         $this->__initializer__ && $this->__initializer__->__invoke($this'getOgDescription', []);
  980.         return parent::getOgDescription();
  981.     }
  982.     /**
  983.      * {@inheritDoc}
  984.      */
  985.     public function setOgDescription(?string $ogDescription): void
  986.     {
  987.         $this->__initializer__ && $this->__initializer__->__invoke($this'setOgDescription', [$ogDescription]);
  988.         parent::setOgDescription($ogDescription);
  989.     }
  990.     /**
  991.      * {@inheritDoc}
  992.      */
  993.     public function getOgImage(): ?\App\Entity\Utils\Cloudinary\Media
  994.     {
  995.         $this->__initializer__ && $this->__initializer__->__invoke($this'getOgImage', []);
  996.         return parent::getOgImage();
  997.     }
  998.     /**
  999.      * {@inheritDoc}
  1000.      */
  1001.     public function setOgImage(\App\Entity\Utils\Cloudinary\Media $ogImage): void
  1002.     {
  1003.         $this->__initializer__ && $this->__initializer__->__invoke($this'setOgImage', [$ogImage]);
  1004.         parent::setOgImage($ogImage);
  1005.     }
  1006.     /**
  1007.      * {@inheritDoc}
  1008.      */
  1009.     public function getTwitterTitle(): ?string
  1010.     {
  1011.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTwitterTitle', []);
  1012.         return parent::getTwitterTitle();
  1013.     }
  1014.     /**
  1015.      * {@inheritDoc}
  1016.      */
  1017.     public function setTwitterTitle(?string $twitterTitle): void
  1018.     {
  1019.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTwitterTitle', [$twitterTitle]);
  1020.         parent::setTwitterTitle($twitterTitle);
  1021.     }
  1022.     /**
  1023.      * {@inheritDoc}
  1024.      */
  1025.     public function getTwitterDescription(): ?string
  1026.     {
  1027.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTwitterDescription', []);
  1028.         return parent::getTwitterDescription();
  1029.     }
  1030.     /**
  1031.      * {@inheritDoc}
  1032.      */
  1033.     public function setTwitterDescription(?string $twitterDescription): void
  1034.     {
  1035.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTwitterDescription', [$twitterDescription]);
  1036.         parent::setTwitterDescription($twitterDescription);
  1037.     }
  1038.     /**
  1039.      * {@inheritDoc}
  1040.      */
  1041.     public function getTwitterCard(): ?string
  1042.     {
  1043.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTwitterCard', []);
  1044.         return parent::getTwitterCard();
  1045.     }
  1046.     /**
  1047.      * {@inheritDoc}
  1048.      */
  1049.     public function setTwitterCard(?string $twitterCard): void
  1050.     {
  1051.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTwitterCard', [$twitterCard]);
  1052.         parent::setTwitterCard($twitterCard);
  1053.     }
  1054.     /**
  1055.      * {@inheritDoc}
  1056.      */
  1057.     public function getTwitterImage(): ?\App\Entity\Utils\Cloudinary\Media
  1058.     {
  1059.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTwitterImage', []);
  1060.         return parent::getTwitterImage();
  1061.     }
  1062.     /**
  1063.      * {@inheritDoc}
  1064.      */
  1065.     public function setTwitterImage(\App\Entity\Utils\Cloudinary\Media $twitterImage): void
  1066.     {
  1067.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTwitterImage', [$twitterImage]);
  1068.         parent::setTwitterImage($twitterImage);
  1069.     }
  1070.     /**
  1071.      * {@inheritDoc}
  1072.      */
  1073.     public function getSeoArrayModel(): array
  1074.     {
  1075.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSeoArrayModel', []);
  1076.         return parent::getSeoArrayModel();
  1077.     }
  1078. }