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

Open in your IDE?
  1. <?php
  2. namespace Proxies\__CG__\Bidcoz\Bundle\CoreBundle\Entity;
  3. /**
  4.  * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
  5.  */
  6. class Campaign extends \Bidcoz\Bundle\CoreBundle\Entity\Campaign 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''name''slug''organization''active''description''feeType''transactionFeePassthrough''collectCcInfo''detailsTitle''detailsBody''homepageContent''video''hasAuction''hasShop''hasFundANeed''auction''shop''fundANeed''hasSponsorship''sponsorshipSignup''sponsorships''sponsorshipLevels''hasTickets''selfCheckInDate''ticketType''seatingChartImages''ticketQuantity''ticketEnd''tickets''ticketTypes''ticketDisplayName''shopDisplayName''fundANeedDisplayName''crewUpSetupDisplayName''crewUpSetupTextDescription''paddleRaiseDisplayName''raffleDisplayName''shopGoal''fundANeedGoal''paddleRaiseGoal''externalPurchaseDisplayName''registrations''purchases''transactions''donations''donationLevels''hasItemDonations''hasProcurement''donatedItems''hasCashDonations''hasFundDrive''fundDriveName''fundDriveBegin''fundDriveEnd''paymentNotice''membershipLevels''hasMembership''membershipBegin''membershipEnd''encourageCashDonations''showCashDonations''cashDonationGoal''displayCashDonationGoal''displayCashDonationGoalProgress''cryptoWallets''hasRegistrations''raffleTypes''registrationTypes''requireRegistrationWaiver''registrationWaiver''registrationStart''registrationEnd''hasPaddleRaise''showPaddleRaiseMobileBtn''hasDisplayFeeds''hasVolunteers''theme''bannerImage''logo''timezone''perpetual''payByCheck''holdItemsInCart''allowCustomPaymentInstructions''customPaymentInstructions''donationText''smsReply''hasRaffle''raffleStart''raffleEnd''raffleShowWinnersOnHomepage''twilioCampaign''fees''campaignDetails''bidNumbers''ticketGroups''itemTemplates''sendPurchaseEmail''createdAt'];
  53.         }
  54.         return ['__isInitialized__''id''name''slug''organization''active''description''feeType''transactionFeePassthrough''collectCcInfo''detailsTitle''detailsBody''homepageContent''video''hasAuction''hasShop''hasFundANeed''auction''shop''fundANeed''hasSponsorship''sponsorshipSignup''sponsorships''sponsorshipLevels''hasTickets''selfCheckInDate''ticketType''seatingChartImages''ticketQuantity''ticketEnd''tickets''ticketTypes''ticketDisplayName''shopDisplayName''fundANeedDisplayName''crewUpSetupDisplayName''crewUpSetupTextDescription''paddleRaiseDisplayName''raffleDisplayName''shopGoal''fundANeedGoal''paddleRaiseGoal''externalPurchaseDisplayName''registrations''purchases''transactions''donations''donationLevels''hasItemDonations''hasProcurement''donatedItems''hasCashDonations''hasFundDrive''fundDriveName''fundDriveBegin''fundDriveEnd''paymentNotice''membershipLevels''hasMembership''membershipBegin''membershipEnd''encourageCashDonations''showCashDonations''cashDonationGoal''displayCashDonationGoal''displayCashDonationGoalProgress''cryptoWallets''hasRegistrations''raffleTypes''registrationTypes''requireRegistrationWaiver''registrationWaiver''registrationStart''registrationEnd''hasPaddleRaise''showPaddleRaiseMobileBtn''hasDisplayFeeds''hasVolunteers''theme''bannerImage''logo''timezone''perpetual''payByCheck''holdItemsInCart''allowCustomPaymentInstructions''customPaymentInstructions''donationText''smsReply''hasRaffle''raffleStart''raffleEnd''raffleShowWinnersOnHomepage''twilioCampaign''fees''campaignDetails''bidNumbers''ticketGroups''itemTemplates''sendPurchaseEmail''createdAt'];
  55.     }
  56.     /**
  57.      * 
  58.      */
  59.     public function __wakeup()
  60.     {
  61.         if ( ! $this->__isInitialized__) {
  62.             $this->__initializer__ = function (Campaign $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 setId(?int $id): void
  151.     {
  152.         $this->__initializer__ && $this->__initializer__->__invoke($this'setId', [$id]);
  153.         parent::setId($id);
  154.     }
  155.     /**
  156.      * {@inheritDoc}
  157.      */
  158.     public function getId()
  159.     {
  160.         if ($this->__isInitialized__ === false) {
  161.             return (int)  parent::getId();
  162.         }
  163.         $this->__initializer__ && $this->__initializer__->__invoke($this'getId', []);
  164.         return parent::getId();
  165.     }
  166.     /**
  167.      * {@inheritDoc}
  168.      */
  169.     public function setName($name)
  170.     {
  171.         $this->__initializer__ && $this->__initializer__->__invoke($this'setName', [$name]);
  172.         return parent::setName($name);
  173.     }
  174.     /**
  175.      * {@inheritDoc}
  176.      */
  177.     public function getName()
  178.     {
  179.         $this->__initializer__ && $this->__initializer__->__invoke($this'getName', []);
  180.         return parent::getName();
  181.     }
  182.     /**
  183.      * {@inheritDoc}
  184.      */
  185.     public function setSlug($slug)
  186.     {
  187.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSlug', [$slug]);
  188.         return parent::setSlug($slug);
  189.     }
  190.     /**
  191.      * {@inheritDoc}
  192.      */
  193.     public function getSlug()
  194.     {
  195.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSlug', []);
  196.         return parent::getSlug();
  197.     }
  198.     /**
  199.      * {@inheritDoc}
  200.      */
  201.     public function getOrganization()
  202.     {
  203.         $this->__initializer__ && $this->__initializer__->__invoke($this'getOrganization', []);
  204.         return parent::getOrganization();
  205.     }
  206.     /**
  207.      * {@inheritDoc}
  208.      */
  209.     public function setOrganization(\Bidcoz\Bundle\CoreBundle\Entity\Organization $organization)
  210.     {
  211.         $this->__initializer__ && $this->__initializer__->__invoke($this'setOrganization', [$organization]);
  212.         return parent::setOrganization($organization);
  213.     }
  214.     /**
  215.      * {@inheritDoc}
  216.      */
  217.     public function setActive($active)
  218.     {
  219.         $this->__initializer__ && $this->__initializer__->__invoke($this'setActive', [$active]);
  220.         return parent::setActive($active);
  221.     }
  222.     /**
  223.      * {@inheritDoc}
  224.      */
  225.     public function isActive()
  226.     {
  227.         $this->__initializer__ && $this->__initializer__->__invoke($this'isActive', []);
  228.         return parent::isActive();
  229.     }
  230.     /**
  231.      * {@inheritDoc}
  232.      */
  233.     public function setDescription($description)
  234.     {
  235.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDescription', [$description]);
  236.         return parent::setDescription($description);
  237.     }
  238.     /**
  239.      * {@inheritDoc}
  240.      */
  241.     public function getDescription()
  242.     {
  243.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDescription', []);
  244.         return parent::getDescription();
  245.     }
  246.     /**
  247.      * {@inheritDoc}
  248.      */
  249.     public function setFeeType(string $feeType)
  250.     {
  251.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFeeType', [$feeType]);
  252.         return parent::setFeeType($feeType);
  253.     }
  254.     /**
  255.      * {@inheritDoc}
  256.      */
  257.     public function getFeeType()
  258.     {
  259.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFeeType', []);
  260.         return parent::getFeeType();
  261.     }
  262.     /**
  263.      * {@inheritDoc}
  264.      */
  265.     public function isUserChoiceFeeType(): bool
  266.     {
  267.         $this->__initializer__ && $this->__initializer__->__invoke($this'isUserChoiceFeeType', []);
  268.         return parent::isUserChoiceFeeType();
  269.     }
  270.     /**
  271.      * {@inheritDoc}
  272.      */
  273.     public function setTransactionFeePassthrough(bool $transactionFeePassthrough)
  274.     {
  275.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTransactionFeePassthrough', [$transactionFeePassthrough]);
  276.         return parent::setTransactionFeePassthrough($transactionFeePassthrough);
  277.     }
  278.     /**
  279.      * {@inheritDoc}
  280.      */
  281.     public function getTransactionFeePassthrough(): bool
  282.     {
  283.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTransactionFeePassthrough', []);
  284.         return parent::getTransactionFeePassthrough();
  285.     }
  286.     /**
  287.      * {@inheritDoc}
  288.      */
  289.     public function setCollectCcInfo(bool $collectCcInfo)
  290.     {
  291.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCollectCcInfo', [$collectCcInfo]);
  292.         return parent::setCollectCcInfo($collectCcInfo);
  293.     }
  294.     /**
  295.      * {@inheritDoc}
  296.      */
  297.     public function getCollectCcInfo(): bool
  298.     {
  299.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCollectCcInfo', []);
  300.         return parent::getCollectCcInfo();
  301.     }
  302.     /**
  303.      * {@inheritDoc}
  304.      */
  305.     public function getCurrency()
  306.     {
  307.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCurrency', []);
  308.         return parent::getCurrency();
  309.     }
  310.     /**
  311.      * {@inheritDoc}
  312.      */
  313.     public function isOver()
  314.     {
  315.         $this->__initializer__ && $this->__initializer__->__invoke($this'isOver', []);
  316.         return parent::isOver();
  317.     }
  318.     /**
  319.      * {@inheritDoc}
  320.      */
  321.     public function ensureFundDriveDatesValid(\Symfony\Component\Validator\Context\ExecutionContextInterface $context)
  322.     {
  323.         $this->__initializer__ && $this->__initializer__->__invoke($this'ensureFundDriveDatesValid', [$context]);
  324.         return parent::ensureFundDriveDatesValid($context);
  325.     }
  326.     /**
  327.      * {@inheritDoc}
  328.      */
  329.     public function ensureMembershipDatesValid(\Symfony\Component\Validator\Context\ExecutionContextInterface $context)
  330.     {
  331.         $this->__initializer__ && $this->__initializer__->__invoke($this'ensureMembershipDatesValid', [$context]);
  332.         return parent::ensureMembershipDatesValid($context);
  333.     }
  334.     /**
  335.      * {@inheritDoc}
  336.      */
  337.     public function setHasAuction($hasAuction)
  338.     {
  339.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasAuction', [$hasAuction]);
  340.         return parent::setHasAuction($hasAuction);
  341.     }
  342.     /**
  343.      * {@inheritDoc}
  344.      */
  345.     public function getHasAuction()
  346.     {
  347.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasAuction', []);
  348.         return parent::getHasAuction();
  349.     }
  350.     /**
  351.      * {@inheritDoc}
  352.      */
  353.     public function hasAuction()
  354.     {
  355.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasAuction', []);
  356.         return parent::hasAuction();
  357.     }
  358.     /**
  359.      * {@inheritDoc}
  360.      */
  361.     public function auctionAvailable(): bool
  362.     {
  363.         $this->__initializer__ && $this->__initializer__->__invoke($this'auctionAvailable', []);
  364.         return parent::auctionAvailable();
  365.     }
  366.     /**
  367.      * {@inheritDoc}
  368.      */
  369.     public function setHasShop($hasShop)
  370.     {
  371.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasShop', [$hasShop]);
  372.         return parent::setHasShop($hasShop);
  373.     }
  374.     /**
  375.      * {@inheritDoc}
  376.      */
  377.     public function getHasShop()
  378.     {
  379.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasShop', []);
  380.         return parent::getHasShop();
  381.     }
  382.     /**
  383.      * {@inheritDoc}
  384.      */
  385.     public function hasShop()
  386.     {
  387.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasShop', []);
  388.         return parent::hasShop();
  389.     }
  390.     /**
  391.      * {@inheritDoc}
  392.      */
  393.     public function shopAvailable(): bool
  394.     {
  395.         $this->__initializer__ && $this->__initializer__->__invoke($this'shopAvailable', []);
  396.         return parent::shopAvailable();
  397.     }
  398.     /**
  399.      * {@inheritDoc}
  400.      */
  401.     public function setHasFundANeed($hasFundANeed)
  402.     {
  403.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasFundANeed', [$hasFundANeed]);
  404.         return parent::setHasFundANeed($hasFundANeed);
  405.     }
  406.     /**
  407.      * {@inheritDoc}
  408.      */
  409.     public function getHasFundANeed()
  410.     {
  411.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasFundANeed', []);
  412.         return parent::getHasFundANeed();
  413.     }
  414.     /**
  415.      * {@inheritDoc}
  416.      */
  417.     public function hasFundANeed()
  418.     {
  419.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasFundANeed', []);
  420.         return parent::hasFundANeed();
  421.     }
  422.     /**
  423.      * {@inheritDoc}
  424.      */
  425.     public function fundANeedAvailable(): bool
  426.     {
  427.         $this->__initializer__ && $this->__initializer__->__invoke($this'fundANeedAvailable', []);
  428.         return parent::fundANeedAvailable();
  429.     }
  430.     /**
  431.      * {@inheritDoc}
  432.      */
  433.     public function setAuction(?\Bidcoz\Bundle\CoreBundle\Entity\Auction\Auction $auction): void
  434.     {
  435.         $this->__initializer__ && $this->__initializer__->__invoke($this'setAuction', [$auction]);
  436.         parent::setAuction($auction);
  437.     }
  438.     /**
  439.      * {@inheritDoc}
  440.      */
  441.     public function getAuction(): ?\Bidcoz\Bundle\CoreBundle\Entity\Auction\Auction
  442.     {
  443.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAuction', []);
  444.         return parent::getAuction();
  445.     }
  446.     /**
  447.      * {@inheritDoc}
  448.      */
  449.     public function setShop(?\Bidcoz\Bundle\CoreBundle\Entity\Auction\Shop $shop)
  450.     {
  451.         $this->__initializer__ && $this->__initializer__->__invoke($this'setShop', [$shop]);
  452.         return parent::setShop($shop);
  453.     }
  454.     /**
  455.      * {@inheritDoc}
  456.      */
  457.     public function getShop(): ?\Bidcoz\Bundle\CoreBundle\Entity\Auction\Shop
  458.     {
  459.         $this->__initializer__ && $this->__initializer__->__invoke($this'getShop', []);
  460.         return parent::getShop();
  461.     }
  462.     /**
  463.      * {@inheritDoc}
  464.      */
  465.     public function setFundANeed(?\Bidcoz\Bundle\CoreBundle\Entity\Auction\FundANeed $fundANeed)
  466.     {
  467.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFundANeed', [$fundANeed]);
  468.         return parent::setFundANeed($fundANeed);
  469.     }
  470.     /**
  471.      * {@inheritDoc}
  472.      */
  473.     public function getFundANeed(): ?\Bidcoz\Bundle\CoreBundle\Entity\Auction\FundANeed
  474.     {
  475.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFundANeed', []);
  476.         return parent::getFundANeed();
  477.     }
  478.     /**
  479.      * {@inheritDoc}
  480.      */
  481.     public function setHasSponsorship($hasSponsorship)
  482.     {
  483.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasSponsorship', [$hasSponsorship]);
  484.         return parent::setHasSponsorship($hasSponsorship);
  485.     }
  486.     /**
  487.      * {@inheritDoc}
  488.      */
  489.     public function getHasSponsorship()
  490.     {
  491.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasSponsorship', []);
  492.         return parent::getHasSponsorship();
  493.     }
  494.     /**
  495.      * {@inheritDoc}
  496.      */
  497.     public function setSponsorshipSignup($sponsorshipSignup)
  498.     {
  499.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSponsorshipSignup', [$sponsorshipSignup]);
  500.         return parent::setSponsorshipSignup($sponsorshipSignup);
  501.     }
  502.     /**
  503.      * {@inheritDoc}
  504.      */
  505.     public function getSponsorshipSignup()
  506.     {
  507.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSponsorshipSignup', []);
  508.         return parent::getSponsorshipSignup();
  509.     }
  510.     /**
  511.      * {@inheritDoc}
  512.      */
  513.     public function setHasTickets($hasTickets)
  514.     {
  515.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasTickets', [$hasTickets]);
  516.         return parent::setHasTickets($hasTickets);
  517.     }
  518.     /**
  519.      * {@inheritDoc}
  520.      */
  521.     public function getHasTickets()
  522.     {
  523.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasTickets', []);
  524.         return parent::getHasTickets();
  525.     }
  526.     /**
  527.      * {@inheritDoc}
  528.      */
  529.     public function hasTickets()
  530.     {
  531.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasTickets', []);
  532.         return parent::hasTickets();
  533.     }
  534.     /**
  535.      * {@inheritDoc}
  536.      */
  537.     public function setTicketType($ticketType)
  538.     {
  539.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTicketType', [$ticketType]);
  540.         return parent::setTicketType($ticketType);
  541.     }
  542.     /**
  543.      * {@inheritDoc}
  544.      */
  545.     public function getTicketType()
  546.     {
  547.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTicketType', []);
  548.         return parent::getTicketType();
  549.     }
  550.     /**
  551.      * {@inheritDoc}
  552.      */
  553.     public function hasSelfCheckIn()
  554.     {
  555.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasSelfCheckIn', []);
  556.         return parent::hasSelfCheckIn();
  557.     }
  558.     /**
  559.      * {@inheritDoc}
  560.      */
  561.     public function setSelfCheckInDate(\DateTime $selfCheckInDate NULL)
  562.     {
  563.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSelfCheckInDate', [$selfCheckInDate]);
  564.         return parent::setSelfCheckInDate($selfCheckInDate);
  565.     }
  566.     /**
  567.      * {@inheritDoc}
  568.      */
  569.     public function getSelfCheckInDate()
  570.     {
  571.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSelfCheckInDate', []);
  572.         return parent::getSelfCheckInDate();
  573.     }
  574.     /**
  575.      * {@inheritDoc}
  576.      */
  577.     public function selfCheckInAvailable(): bool
  578.     {
  579.         $this->__initializer__ && $this->__initializer__->__invoke($this'selfCheckInAvailable', []);
  580.         return parent::selfCheckInAvailable();
  581.     }
  582.     /**
  583.      * {@inheritDoc}
  584.      */
  585.     public function hasTicketAssignment()
  586.     {
  587.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasTicketAssignment', []);
  588.         return parent::hasTicketAssignment();
  589.     }
  590.     /**
  591.      * {@inheritDoc}
  592.      */
  593.     public function isReservedSeating()
  594.     {
  595.         $this->__initializer__ && $this->__initializer__->__invoke($this'isReservedSeating', []);
  596.         return parent::isReservedSeating();
  597.     }
  598.     /**
  599.      * {@inheritDoc}
  600.      */
  601.     public function getSeatingChartImages()
  602.     {
  603.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSeatingChartImages', []);
  604.         return parent::getSeatingChartImages();
  605.     }
  606.     /**
  607.      * {@inheritDoc}
  608.      */
  609.     public function addSeatingChartImage(\Bidcoz\Bundle\CoreBundle\Entity\Ticket\SeatingChartImage $image)
  610.     {
  611.         $this->__initializer__ && $this->__initializer__->__invoke($this'addSeatingChartImage', [$image]);
  612.         return parent::addSeatingChartImage($image);
  613.     }
  614.     /**
  615.      * {@inheritDoc}
  616.      */
  617.     public function removeSeatingChartImage(\Bidcoz\Bundle\CoreBundle\Entity\Ticket\SeatingChartImage $image)
  618.     {
  619.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeSeatingChartImage', [$image]);
  620.         return parent::removeSeatingChartImage($image);
  621.     }
  622.     /**
  623.      * {@inheritDoc}
  624.      */
  625.     public function setPrimarySeatingChartImage(\Bidcoz\Bundle\CoreBundle\Entity\Ticket\SeatingChartImage $image)
  626.     {
  627.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPrimarySeatingChartImage', [$image]);
  628.         return parent::setPrimarySeatingChartImage($image);
  629.     }
  630.     /**
  631.      * {@inheritDoc}
  632.      */
  633.     public function getPrimarySeatingChartImage()
  634.     {
  635.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPrimarySeatingChartImage', []);
  636.         return parent::getPrimarySeatingChartImage();
  637.     }
  638.     /**
  639.      * {@inheritDoc}
  640.      */
  641.     public function setTicketQuantity($ticketQuantity)
  642.     {
  643.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTicketQuantity', [$ticketQuantity]);
  644.         return parent::setTicketQuantity($ticketQuantity);
  645.     }
  646.     /**
  647.      * {@inheritDoc}
  648.      */
  649.     public function getTicketQuantity()
  650.     {
  651.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTicketQuantity', []);
  652.         return parent::getTicketQuantity();
  653.     }
  654.     /**
  655.      * {@inheritDoc}
  656.      */
  657.     public function setTicketEnd(\DateTime $date)
  658.     {
  659.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTicketEnd', [$date]);
  660.         return parent::setTicketEnd($date);
  661.     }
  662.     /**
  663.      * {@inheritDoc}
  664.      */
  665.     public function getTicketEnd()
  666.     {
  667.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTicketEnd', []);
  668.         return parent::getTicketEnd();
  669.     }
  670.     /**
  671.      * {@inheritDoc}
  672.      */
  673.     public function setDetailsTitle($detailsTitle)
  674.     {
  675.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDetailsTitle', [$detailsTitle]);
  676.         return parent::setDetailsTitle($detailsTitle);
  677.     }
  678.     /**
  679.      * {@inheritDoc}
  680.      */
  681.     public function getDetailsTitle()
  682.     {
  683.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDetailsTitle', []);
  684.         return parent::getDetailsTitle();
  685.     }
  686.     /**
  687.      * {@inheritDoc}
  688.      */
  689.     public function setDetailsBody($detailsBody)
  690.     {
  691.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDetailsBody', [$detailsBody]);
  692.         return parent::setDetailsBody($detailsBody);
  693.     }
  694.     /**
  695.      * {@inheritDoc}
  696.      */
  697.     public function getDetailsBody()
  698.     {
  699.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDetailsBody', []);
  700.         return parent::getDetailsBody();
  701.     }
  702.     /**
  703.      * {@inheritDoc}
  704.      */
  705.     public function setHomepageContent($homepageContent)
  706.     {
  707.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHomepageContent', [$homepageContent]);
  708.         return parent::setHomepageContent($homepageContent);
  709.     }
  710.     /**
  711.      * {@inheritDoc}
  712.      */
  713.     public function getHomepageContent()
  714.     {
  715.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHomepageContent', []);
  716.         return parent::getHomepageContent();
  717.     }
  718.     /**
  719.      * {@inheritDoc}
  720.      */
  721.     public function setVideo(\Bidcoz\Bundle\CoreBundle\Entity\VideoEmbed $video)
  722.     {
  723.         $this->__initializer__ && $this->__initializer__->__invoke($this'setVideo', [$video]);
  724.         return parent::setVideo($video);
  725.     }
  726.     /**
  727.      * {@inheritDoc}
  728.      */
  729.     public function getVideo()
  730.     {
  731.         $this->__initializer__ && $this->__initializer__->__invoke($this'getVideo', []);
  732.         return parent::getVideo();
  733.     }
  734.     /**
  735.      * {@inheritDoc}
  736.      */
  737.     public function ticketsAvailable()
  738.     {
  739.         $this->__initializer__ && $this->__initializer__->__invoke($this'ticketsAvailable', []);
  740.         return parent::ticketsAvailable();
  741.     }
  742.     /**
  743.      * {@inheritDoc}
  744.      */
  745.     public function getTickets()
  746.     {
  747.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTickets', []);
  748.         return parent::getTickets();
  749.     }
  750.     /**
  751.      * {@inheritDoc}
  752.      */
  753.     public function getTicketTypes()
  754.     {
  755.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTicketTypes', []);
  756.         return parent::getTicketTypes();
  757.     }
  758.     /**
  759.      * {@inheritDoc}
  760.      */
  761.     public function addTicketType(\Bidcoz\Bundle\CoreBundle\Entity\Ticket\TicketType $ticketType): void
  762.     {
  763.         $this->__initializer__ && $this->__initializer__->__invoke($this'addTicketType', [$ticketType]);
  764.         parent::addTicketType($ticketType);
  765.     }
  766.     /**
  767.      * {@inheritDoc}
  768.      */
  769.     public function removeTicketType(\Bidcoz\Bundle\CoreBundle\Entity\Ticket\TicketType $ticketType): void
  770.     {
  771.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeTicketType', [$ticketType]);
  772.         parent::removeTicketType($ticketType);
  773.     }
  774.     /**
  775.      * {@inheritDoc}
  776.      */
  777.     public function setTicketDisplayName(string $ticketDisplayName)
  778.     {
  779.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTicketDisplayName', [$ticketDisplayName]);
  780.         return parent::setTicketDisplayName($ticketDisplayName);
  781.     }
  782.     /**
  783.      * {@inheritDoc}
  784.      */
  785.     public function getTicketDisplayName(): string
  786.     {
  787.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTicketDisplayName', []);
  788.         return parent::getTicketDisplayName();
  789.     }
  790.     /**
  791.      * {@inheritDoc}
  792.      */
  793.     public function setShopDisplayName(string $shopDisplayName)
  794.     {
  795.         $this->__initializer__ && $this->__initializer__->__invoke($this'setShopDisplayName', [$shopDisplayName]);
  796.         return parent::setShopDisplayName($shopDisplayName);
  797.     }
  798.     /**
  799.      * {@inheritDoc}
  800.      */
  801.     public function getShopDisplayName(): string
  802.     {
  803.         $this->__initializer__ && $this->__initializer__->__invoke($this'getShopDisplayName', []);
  804.         return parent::getShopDisplayName();
  805.     }
  806.     /**
  807.      * {@inheritDoc}
  808.      */
  809.     public function setFundANeedDisplayName(string $fundANeedDisplayName)
  810.     {
  811.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFundANeedDisplayName', [$fundANeedDisplayName]);
  812.         return parent::setFundANeedDisplayName($fundANeedDisplayName);
  813.     }
  814.     /**
  815.      * {@inheritDoc}
  816.      */
  817.     public function getPaddleRaiseDisplayName(): string
  818.     {
  819.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPaddleRaiseDisplayName', []);
  820.         return parent::getPaddleRaiseDisplayName();
  821.     }
  822.     /**
  823.      * {@inheritDoc}
  824.      */
  825.     public function setPaddleRaiseDisplayName(string $paddleRaiseDisplayName)
  826.     {
  827.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPaddleRaiseDisplayName', [$paddleRaiseDisplayName]);
  828.         return parent::setPaddleRaiseDisplayName($paddleRaiseDisplayName);
  829.     }
  830.     /**
  831.      * {@inheritDoc}
  832.      */
  833.     public function getRaffleDisplayName(): string
  834.     {
  835.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRaffleDisplayName', []);
  836.         return parent::getRaffleDisplayName();
  837.     }
  838.     /**
  839.      * {@inheritDoc}
  840.      */
  841.     public function setRaffleDisplayName(string $raffleDisplayName)
  842.     {
  843.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRaffleDisplayName', [$raffleDisplayName]);
  844.         return parent::setRaffleDisplayName($raffleDisplayName);
  845.     }
  846.     /**
  847.      * {@inheritDoc}
  848.      */
  849.     public function getFundANeedDisplayName(): string
  850.     {
  851.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFundANeedDisplayName', []);
  852.         return parent::getFundANeedDisplayName();
  853.     }
  854.     /**
  855.      * {@inheritDoc}
  856.      */
  857.     public function setExternalPurchaseDisplayName(string $externalPurchaseDisplayName)
  858.     {
  859.         $this->__initializer__ && $this->__initializer__->__invoke($this'setExternalPurchaseDisplayName', [$externalPurchaseDisplayName]);
  860.         return parent::setExternalPurchaseDisplayName($externalPurchaseDisplayName);
  861.     }
  862.     /**
  863.      * {@inheritDoc}
  864.      */
  865.     public function getExternalPurchaseDisplayName(): string
  866.     {
  867.         $this->__initializer__ && $this->__initializer__->__invoke($this'getExternalPurchaseDisplayName', []);
  868.         return parent::getExternalPurchaseDisplayName();
  869.     }
  870.     /**
  871.      * {@inheritDoc}
  872.      */
  873.     public function setHasItemDonations($hasItemDonations)
  874.     {
  875.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasItemDonations', [$hasItemDonations]);
  876.         return parent::setHasItemDonations($hasItemDonations);
  877.     }
  878.     /**
  879.      * {@inheritDoc}
  880.      */
  881.     public function getHasItemDonations()
  882.     {
  883.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasItemDonations', []);
  884.         return parent::getHasItemDonations();
  885.     }
  886.     /**
  887.      * {@inheritDoc}
  888.      */
  889.     public function setHasProcurement($hasProcurement)
  890.     {
  891.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasProcurement', [$hasProcurement]);
  892.         return parent::setHasProcurement($hasProcurement);
  893.     }
  894.     /**
  895.      * {@inheritDoc}
  896.      */
  897.     public function getHasProcurement()
  898.     {
  899.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasProcurement', []);
  900.         return parent::getHasProcurement();
  901.     }
  902.     /**
  903.      * {@inheritDoc}
  904.      */
  905.     public function setHasCashDonations($hasCashDonations)
  906.     {
  907.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasCashDonations', [$hasCashDonations]);
  908.         return parent::setHasCashDonations($hasCashDonations);
  909.     }
  910.     /**
  911.      * {@inheritDoc}
  912.      */
  913.     public function getHasCashDonations()
  914.     {
  915.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasCashDonations', []);
  916.         return parent::getHasCashDonations();
  917.     }
  918.     /**
  919.      * {@inheritDoc}
  920.      */
  921.     public function hasCashDonations()
  922.     {
  923.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasCashDonations', []);
  924.         return parent::hasCashDonations();
  925.     }
  926.     /**
  927.      * {@inheritDoc}
  928.      */
  929.     public function setHasFundDrive($hasFundDrive)
  930.     {
  931.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasFundDrive', [$hasFundDrive]);
  932.         return parent::setHasFundDrive($hasFundDrive);
  933.     }
  934.     /**
  935.      * {@inheritDoc}
  936.      */
  937.     public function getHasFundDrive()
  938.     {
  939.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasFundDrive', []);
  940.         return parent::getHasFundDrive();
  941.     }
  942.     /**
  943.      * {@inheritDoc}
  944.      */
  945.     public function isFundDriveEnabled()
  946.     {
  947.         $this->__initializer__ && $this->__initializer__->__invoke($this'isFundDriveEnabled', []);
  948.         return parent::isFundDriveEnabled();
  949.     }
  950.     /**
  951.      * {@inheritDoc}
  952.      */
  953.     public function hasFundDrive()
  954.     {
  955.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasFundDrive', []);
  956.         return parent::hasFundDrive();
  957.     }
  958.     /**
  959.      * {@inheritDoc}
  960.      */
  961.     public function setFundDriveName($fundDriveName)
  962.     {
  963.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFundDriveName', [$fundDriveName]);
  964.         return parent::setFundDriveName($fundDriveName);
  965.     }
  966.     /**
  967.      * {@inheritDoc}
  968.      */
  969.     public function getFundDriveName()
  970.     {
  971.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFundDriveName', []);
  972.         return parent::getFundDriveName();
  973.     }
  974.     /**
  975.      * {@inheritDoc}
  976.      */
  977.     public function setFundDriveBegin(\DateTime $fundDriveBegin NULL)
  978.     {
  979.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFundDriveBegin', [$fundDriveBegin]);
  980.         return parent::setFundDriveBegin($fundDriveBegin);
  981.     }
  982.     /**
  983.      * {@inheritDoc}
  984.      */
  985.     public function getFundDriveBegin()
  986.     {
  987.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFundDriveBegin', []);
  988.         return parent::getFundDriveBegin();
  989.     }
  990.     /**
  991.      * {@inheritDoc}
  992.      */
  993.     public function setFundDriveEnd(\DateTime $fundDriveEnd NULL)
  994.     {
  995.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFundDriveEnd', [$fundDriveEnd]);
  996.         return parent::setFundDriveEnd($fundDriveEnd);
  997.     }
  998.     /**
  999.      * {@inheritDoc}
  1000.      */
  1001.     public function getFundDriveEnd()
  1002.     {
  1003.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFundDriveEnd', []);
  1004.         return parent::getFundDriveEnd();
  1005.     }
  1006.     /**
  1007.      * {@inheritDoc}
  1008.      */
  1009.     public function setPaymentNotice($paymentNotice)
  1010.     {
  1011.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPaymentNotice', [$paymentNotice]);
  1012.         return parent::setPaymentNotice($paymentNotice);
  1013.     }
  1014.     /**
  1015.      * {@inheritDoc}
  1016.      */
  1017.     public function getPaymentNotice()
  1018.     {
  1019.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPaymentNotice', []);
  1020.         return parent::getPaymentNotice();
  1021.     }
  1022.     /**
  1023.      * {@inheritDoc}
  1024.      */
  1025.     public function getDonationLevels(): ?\Doctrine\Common\Collections\Collection
  1026.     {
  1027.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDonationLevels', []);
  1028.         return parent::getDonationLevels();
  1029.     }
  1030.     /**
  1031.      * {@inheritDoc}
  1032.      */
  1033.     public function setDonationLevels(?\Doctrine\Common\Collections\Collection $donationLevels): void
  1034.     {
  1035.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDonationLevels', [$donationLevels]);
  1036.         parent::setDonationLevels($donationLevels);
  1037.     }
  1038.     /**
  1039.      * {@inheritDoc}
  1040.      */
  1041.     public function getMembershipLevels()
  1042.     {
  1043.         $this->__initializer__ && $this->__initializer__->__invoke($this'getMembershipLevels', []);
  1044.         return parent::getMembershipLevels();
  1045.     }
  1046.     /**
  1047.      * {@inheritDoc}
  1048.      */
  1049.     public function setHasMembership($hasMembership)
  1050.     {
  1051.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasMembership', [$hasMembership]);
  1052.         return parent::setHasMembership($hasMembership);
  1053.     }
  1054.     /**
  1055.      * {@inheritDoc}
  1056.      */
  1057.     public function getHasMembership()
  1058.     {
  1059.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasMembership', []);
  1060.         return parent::getHasMembership();
  1061.     }
  1062.     /**
  1063.      * {@inheritDoc}
  1064.      */
  1065.     public function isMembershipEnabled()
  1066.     {
  1067.         $this->__initializer__ && $this->__initializer__->__invoke($this'isMembershipEnabled', []);
  1068.         return parent::isMembershipEnabled();
  1069.     }
  1070.     /**
  1071.      * {@inheritDoc}
  1072.      */
  1073.     public function hasMembership()
  1074.     {
  1075.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasMembership', []);
  1076.         return parent::hasMembership();
  1077.     }
  1078.     /**
  1079.      * {@inheritDoc}
  1080.      */
  1081.     public function setMembershipBegin(\DateTime $membershipBegin NULL)
  1082.     {
  1083.         $this->__initializer__ && $this->__initializer__->__invoke($this'setMembershipBegin', [$membershipBegin]);
  1084.         return parent::setMembershipBegin($membershipBegin);
  1085.     }
  1086.     /**
  1087.      * {@inheritDoc}
  1088.      */
  1089.     public function getMembershipBegin()
  1090.     {
  1091.         $this->__initializer__ && $this->__initializer__->__invoke($this'getMembershipBegin', []);
  1092.         return parent::getMembershipBegin();
  1093.     }
  1094.     /**
  1095.      * {@inheritDoc}
  1096.      */
  1097.     public function setMembershipEnd(\DateTime $membershipEnd NULL)
  1098.     {
  1099.         $this->__initializer__ && $this->__initializer__->__invoke($this'setMembershipEnd', [$membershipEnd]);
  1100.         return parent::setMembershipEnd($membershipEnd);
  1101.     }
  1102.     /**
  1103.      * {@inheritDoc}
  1104.      */
  1105.     public function getMembershipEnd()
  1106.     {
  1107.         $this->__initializer__ && $this->__initializer__->__invoke($this'getMembershipEnd', []);
  1108.         return parent::getMembershipEnd();
  1109.     }
  1110.     /**
  1111.      * {@inheritDoc}
  1112.      */
  1113.     public function setEncourageCashDonations($encourageCashDonations)
  1114.     {
  1115.         $this->__initializer__ && $this->__initializer__->__invoke($this'setEncourageCashDonations', [$encourageCashDonations]);
  1116.         return parent::setEncourageCashDonations($encourageCashDonations);
  1117.     }
  1118.     /**
  1119.      * {@inheritDoc}
  1120.      */
  1121.     public function getEncourageCashDonations()
  1122.     {
  1123.         $this->__initializer__ && $this->__initializer__->__invoke($this'getEncourageCashDonations', []);
  1124.         return parent::getEncourageCashDonations();
  1125.     }
  1126.     /**
  1127.      * {@inheritDoc}
  1128.      */
  1129.     public function setShowCashDonations($showCashDonations)
  1130.     {
  1131.         $this->__initializer__ && $this->__initializer__->__invoke($this'setShowCashDonations', [$showCashDonations]);
  1132.         return parent::setShowCashDonations($showCashDonations);
  1133.     }
  1134.     /**
  1135.      * {@inheritDoc}
  1136.      */
  1137.     public function getShowCashDonations()
  1138.     {
  1139.         $this->__initializer__ && $this->__initializer__->__invoke($this'getShowCashDonations', []);
  1140.         return parent::getShowCashDonations();
  1141.     }
  1142.     /**
  1143.      * {@inheritDoc}
  1144.      */
  1145.     public function setCashDonationGoal($cashDonationGoal)
  1146.     {
  1147.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCashDonationGoal', [$cashDonationGoal]);
  1148.         return parent::setCashDonationGoal($cashDonationGoal);
  1149.     }
  1150.     /**
  1151.      * {@inheritDoc}
  1152.      */
  1153.     public function getCashDonationGoal()
  1154.     {
  1155.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCashDonationGoal', []);
  1156.         return parent::getCashDonationGoal();
  1157.     }
  1158.     /**
  1159.      * {@inheritDoc}
  1160.      */
  1161.     public function setDisplayCashDonationGoal($displayCashDonationGoal)
  1162.     {
  1163.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDisplayCashDonationGoal', [$displayCashDonationGoal]);
  1164.         return parent::setDisplayCashDonationGoal($displayCashDonationGoal);
  1165.     }
  1166.     /**
  1167.      * {@inheritDoc}
  1168.      */
  1169.     public function getDisplayCashDonationGoal()
  1170.     {
  1171.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDisplayCashDonationGoal', []);
  1172.         return parent::getDisplayCashDonationGoal();
  1173.     }
  1174.     /**
  1175.      * {@inheritDoc}
  1176.      */
  1177.     public function setDisplayCashDonationGoalProgress($displayCashDonationGoalProgress)
  1178.     {
  1179.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDisplayCashDonationGoalProgress', [$displayCashDonationGoalProgress]);
  1180.         return parent::setDisplayCashDonationGoalProgress($displayCashDonationGoalProgress);
  1181.     }
  1182.     /**
  1183.      * {@inheritDoc}
  1184.      */
  1185.     public function getDisplayCashDonationGoalProgress()
  1186.     {
  1187.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDisplayCashDonationGoalProgress', []);
  1188.         return parent::getDisplayCashDonationGoalProgress();
  1189.     }
  1190.     /**
  1191.      * {@inheritDoc}
  1192.      */
  1193.     public function getRaffleTypes()
  1194.     {
  1195.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRaffleTypes', []);
  1196.         return parent::getRaffleTypes();
  1197.     }
  1198.     /**
  1199.      * {@inheritDoc}
  1200.      */
  1201.     public function setRaffleTypes($raffleTypes): void
  1202.     {
  1203.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRaffleTypes', [$raffleTypes]);
  1204.         parent::setRaffleTypes($raffleTypes);
  1205.     }
  1206.     /**
  1207.      * {@inheritDoc}
  1208.      */
  1209.     public function addRaffleType(\Bidcoz\Bundle\CoreBundle\Entity\Raffle\RaffleType $raffleType): void
  1210.     {
  1211.         $this->__initializer__ && $this->__initializer__->__invoke($this'addRaffleType', [$raffleType]);
  1212.         parent::addRaffleType($raffleType);
  1213.     }
  1214.     /**
  1215.      * {@inheritDoc}
  1216.      */
  1217.     public function removeRaffleType(\Bidcoz\Bundle\CoreBundle\Entity\Raffle\RaffleType $raffleType): void
  1218.     {
  1219.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeRaffleType', [$raffleType]);
  1220.         parent::removeRaffleType($raffleType);
  1221.     }
  1222.     /**
  1223.      * {@inheritDoc}
  1224.      */
  1225.     public function getActiveRaffles()
  1226.     {
  1227.         $this->__initializer__ && $this->__initializer__->__invoke($this'getActiveRaffles', []);
  1228.         return parent::getActiveRaffles();
  1229.     }
  1230.     /**
  1231.      * {@inheritDoc}
  1232.      */
  1233.     public function setHasRegistrations($hasRegistrations)
  1234.     {
  1235.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasRegistrations', [$hasRegistrations]);
  1236.         return parent::setHasRegistrations($hasRegistrations);
  1237.     }
  1238.     /**
  1239.      * {@inheritDoc}
  1240.      */
  1241.     public function getHasRegistrations()
  1242.     {
  1243.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasRegistrations', []);
  1244.         return parent::getHasRegistrations();
  1245.     }
  1246.     /**
  1247.      * {@inheritDoc}
  1248.      */
  1249.     public function getRegistrationTypes()
  1250.     {
  1251.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRegistrationTypes', []);
  1252.         return parent::getRegistrationTypes();
  1253.     }
  1254.     /**
  1255.      * {@inheritDoc}
  1256.      */
  1257.     public function getCryptoWallets()
  1258.     {
  1259.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCryptoWallets', []);
  1260.         return parent::getCryptoWallets();
  1261.     }
  1262.     /**
  1263.      * {@inheritDoc}
  1264.      */
  1265.     public function setRequireRegistrationWaiver($requireRegistrationWaiver)
  1266.     {
  1267.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRequireRegistrationWaiver', [$requireRegistrationWaiver]);
  1268.         return parent::setRequireRegistrationWaiver($requireRegistrationWaiver);
  1269.     }
  1270.     /**
  1271.      * {@inheritDoc}
  1272.      */
  1273.     public function getRequireRegistrationWaiver()
  1274.     {
  1275.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRequireRegistrationWaiver', []);
  1276.         return parent::getRequireRegistrationWaiver();
  1277.     }
  1278.     /**
  1279.      * {@inheritDoc}
  1280.      */
  1281.     public function setRegistrationWaiver($registrationWaiver)
  1282.     {
  1283.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRegistrationWaiver', [$registrationWaiver]);
  1284.         return parent::setRegistrationWaiver($registrationWaiver);
  1285.     }
  1286.     /**
  1287.      * {@inheritDoc}
  1288.      */
  1289.     public function getRegistrationWaiver()
  1290.     {
  1291.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRegistrationWaiver', []);
  1292.         return parent::getRegistrationWaiver();
  1293.     }
  1294.     /**
  1295.      * {@inheritDoc}
  1296.      */
  1297.     public function setRegistrationStart($registrationStart)
  1298.     {
  1299.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRegistrationStart', [$registrationStart]);
  1300.         return parent::setRegistrationStart($registrationStart);
  1301.     }
  1302.     /**
  1303.      * {@inheritDoc}
  1304.      */
  1305.     public function getRegistrationStart()
  1306.     {
  1307.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRegistrationStart', []);
  1308.         return parent::getRegistrationStart();
  1309.     }
  1310.     /**
  1311.      * {@inheritDoc}
  1312.      */
  1313.     public function setRegistrationEnd($registrationEnd)
  1314.     {
  1315.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRegistrationEnd', [$registrationEnd]);
  1316.         return parent::setRegistrationEnd($registrationEnd);
  1317.     }
  1318.     /**
  1319.      * {@inheritDoc}
  1320.      */
  1321.     public function getRegistrationEnd()
  1322.     {
  1323.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRegistrationEnd', []);
  1324.         return parent::getRegistrationEnd();
  1325.     }
  1326.     /**
  1327.      * {@inheritDoc}
  1328.      */
  1329.     public function isRegistrationActive()
  1330.     {
  1331.         $this->__initializer__ && $this->__initializer__->__invoke($this'isRegistrationActive', []);
  1332.         return parent::isRegistrationActive();
  1333.     }
  1334.     /**
  1335.      * {@inheritDoc}
  1336.      */
  1337.     public function setHasPaddleRaise($hasPaddleRaise)
  1338.     {
  1339.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasPaddleRaise', [$hasPaddleRaise]);
  1340.         return parent::setHasPaddleRaise($hasPaddleRaise);
  1341.     }
  1342.     /**
  1343.      * {@inheritDoc}
  1344.      */
  1345.     public function getHasPaddleRaise()
  1346.     {
  1347.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasPaddleRaise', []);
  1348.         return parent::getHasPaddleRaise();
  1349.     }
  1350.     /**
  1351.      * {@inheritDoc}
  1352.      */
  1353.     public function hasPaddleRaise()
  1354.     {
  1355.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasPaddleRaise', []);
  1356.         return parent::hasPaddleRaise();
  1357.     }
  1358.     /**
  1359.      * {@inheritDoc}
  1360.      */
  1361.     public function setShowPaddleRaiseMobileBtn($showPaddleRaiseMobileBtn)
  1362.     {
  1363.         $this->__initializer__ && $this->__initializer__->__invoke($this'setShowPaddleRaiseMobileBtn', [$showPaddleRaiseMobileBtn]);
  1364.         return parent::setShowPaddleRaiseMobileBtn($showPaddleRaiseMobileBtn);
  1365.     }
  1366.     /**
  1367.      * {@inheritDoc}
  1368.      */
  1369.     public function getShowPaddleRaiseMobileBtn()
  1370.     {
  1371.         $this->__initializer__ && $this->__initializer__->__invoke($this'getShowPaddleRaiseMobileBtn', []);
  1372.         return parent::getShowPaddleRaiseMobileBtn();
  1373.     }
  1374.     /**
  1375.      * {@inheritDoc}
  1376.      */
  1377.     public function setHasDisplayFeeds($hasDisplayFeeds)
  1378.     {
  1379.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasDisplayFeeds', [$hasDisplayFeeds]);
  1380.         return parent::setHasDisplayFeeds($hasDisplayFeeds);
  1381.     }
  1382.     /**
  1383.      * {@inheritDoc}
  1384.      */
  1385.     public function getHasDisplayFeeds()
  1386.     {
  1387.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasDisplayFeeds', []);
  1388.         return parent::getHasDisplayFeeds();
  1389.     }
  1390.     /**
  1391.      * {@inheritDoc}
  1392.      */
  1393.     public function setHasVolunteers(bool $hasVolunteers)
  1394.     {
  1395.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasVolunteers', [$hasVolunteers]);
  1396.         return parent::setHasVolunteers($hasVolunteers);
  1397.     }
  1398.     /**
  1399.      * {@inheritDoc}
  1400.      */
  1401.     public function getHasVolunteers(): bool
  1402.     {
  1403.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasVolunteers', []);
  1404.         return parent::getHasVolunteers();
  1405.     }
  1406.     /**
  1407.      * {@inheritDoc}
  1408.      */
  1409.     public function setTheme(?\Bidcoz\Bundle\CoreBundle\Entity\Theme $theme)
  1410.     {
  1411.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTheme', [$theme]);
  1412.         return parent::setTheme($theme);
  1413.     }
  1414.     /**
  1415.      * {@inheritDoc}
  1416.      */
  1417.     public function getTheme()
  1418.     {
  1419.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTheme', []);
  1420.         return parent::getTheme();
  1421.     }
  1422.     /**
  1423.      * {@inheritDoc}
  1424.      */
  1425.     public function setBannerImage(?\Bidcoz\Bundle\CoreBundle\Entity\Image $image)
  1426.     {
  1427.         $this->__initializer__ && $this->__initializer__->__invoke($this'setBannerImage', [$image]);
  1428.         return parent::setBannerImage($image);
  1429.     }
  1430.     /**
  1431.      * {@inheritDoc}
  1432.      */
  1433.     public function removeBannerImage(): void
  1434.     {
  1435.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeBannerImage', []);
  1436.         parent::removeBannerImage();
  1437.     }
  1438.     /**
  1439.      * {@inheritDoc}
  1440.      */
  1441.     public function getBannerImage(): ?\Bidcoz\Bundle\CoreBundle\Entity\Image
  1442.     {
  1443.         $this->__initializer__ && $this->__initializer__->__invoke($this'getBannerImage', []);
  1444.         return parent::getBannerImage();
  1445.     }
  1446.     /**
  1447.      * {@inheritDoc}
  1448.      */
  1449.     public function setLogo(\Bidcoz\Bundle\CoreBundle\Entity\Image $image NULL)
  1450.     {
  1451.         $this->__initializer__ && $this->__initializer__->__invoke($this'setLogo', [$image]);
  1452.         return parent::setLogo($image);
  1453.     }
  1454.     /**
  1455.      * {@inheritDoc}
  1456.      */
  1457.     public function removeLogo()
  1458.     {
  1459.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeLogo', []);
  1460.         return parent::removeLogo();
  1461.     }
  1462.     /**
  1463.      * {@inheritDoc}
  1464.      */
  1465.     public function getLogo()
  1466.     {
  1467.         $this->__initializer__ && $this->__initializer__->__invoke($this'getLogo', []);
  1468.         return parent::getLogo();
  1469.     }
  1470.     /**
  1471.      * {@inheritDoc}
  1472.      */
  1473.     public function isUrlEditable(): bool
  1474.     {
  1475.         $this->__initializer__ && $this->__initializer__->__invoke($this'isUrlEditable', []);
  1476.         return parent::isUrlEditable();
  1477.     }
  1478.     /**
  1479.      * {@inheritDoc}
  1480.      */
  1481.     public function getCreatedAt()
  1482.     {
  1483.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCreatedAt', []);
  1484.         return parent::getCreatedAt();
  1485.     }
  1486.     /**
  1487.      * {@inheritDoc}
  1488.      */
  1489.     public function isReservedSlug(\Symfony\Component\Validator\Context\ExecutionContextInterface $context)
  1490.     {
  1491.         $this->__initializer__ && $this->__initializer__->__invoke($this'isReservedSlug', [$context]);
  1492.         return parent::isReservedSlug($context);
  1493.     }
  1494.     /**
  1495.      * {@inheritDoc}
  1496.      */
  1497.     public function setPerpetual($perpetual)
  1498.     {
  1499.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPerpetual', [$perpetual]);
  1500.         return parent::setPerpetual($perpetual);
  1501.     }
  1502.     /**
  1503.      * {@inheritDoc}
  1504.      */
  1505.     public function isPerpetual()
  1506.     {
  1507.         $this->__initializer__ && $this->__initializer__->__invoke($this'isPerpetual', []);
  1508.         return parent::isPerpetual();
  1509.     }
  1510.     /**
  1511.      * {@inheritDoc}
  1512.      */
  1513.     public function setPayByCheck($payByCheck)
  1514.     {
  1515.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPayByCheck', [$payByCheck]);
  1516.         return parent::setPayByCheck($payByCheck);
  1517.     }
  1518.     /**
  1519.      * {@inheritDoc}
  1520.      */
  1521.     public function isPayByCheck(): bool
  1522.     {
  1523.         $this->__initializer__ && $this->__initializer__->__invoke($this'isPayByCheck', []);
  1524.         return parent::isPayByCheck();
  1525.     }
  1526.     /**
  1527.      * {@inheritDoc}
  1528.      */
  1529.     public function setHoldItemsInCart(bool $holdItemsInCart)
  1530.     {
  1531.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHoldItemsInCart', [$holdItemsInCart]);
  1532.         return parent::setHoldItemsInCart($holdItemsInCart);
  1533.     }
  1534.     /**
  1535.      * {@inheritDoc}
  1536.      */
  1537.     public function getHoldItemsInCart(): bool
  1538.     {
  1539.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHoldItemsInCart', []);
  1540.         return parent::getHoldItemsInCart();
  1541.     }
  1542.     /**
  1543.      * {@inheritDoc}
  1544.      */
  1545.     public function isUseFastList(): bool
  1546.     {
  1547.         $this->__initializer__ && $this->__initializer__->__invoke($this'isUseFastList', []);
  1548.         return parent::isUseFastList();
  1549.     }
  1550.     /**
  1551.      * {@inheritDoc}
  1552.      */
  1553.     public function isExternalPaymentAllowed(): bool
  1554.     {
  1555.         $this->__initializer__ && $this->__initializer__->__invoke($this'isExternalPaymentAllowed', []);
  1556.         return parent::isExternalPaymentAllowed();
  1557.     }
  1558.     /**
  1559.      * {@inheritDoc}
  1560.      */
  1561.     public function setAllowCustomPaymentInstructions(bool $allowCustomPaymentInstructions)
  1562.     {
  1563.         $this->__initializer__ && $this->__initializer__->__invoke($this'setAllowCustomPaymentInstructions', [$allowCustomPaymentInstructions]);
  1564.         return parent::setAllowCustomPaymentInstructions($allowCustomPaymentInstructions);
  1565.     }
  1566.     /**
  1567.      * {@inheritDoc}
  1568.      */
  1569.     public function getAllowCustomPaymentInstructions(): bool
  1570.     {
  1571.         $this->__initializer__ && $this->__initializer__->__invoke($this'getAllowCustomPaymentInstructions', []);
  1572.         return parent::getAllowCustomPaymentInstructions();
  1573.     }
  1574.     /**
  1575.      * {@inheritDoc}
  1576.      */
  1577.     public function setCustomPaymentInstructions(string $customPaymentInstructions)
  1578.     {
  1579.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCustomPaymentInstructions', [$customPaymentInstructions]);
  1580.         return parent::setCustomPaymentInstructions($customPaymentInstructions);
  1581.     }
  1582.     /**
  1583.      * {@inheritDoc}
  1584.      */
  1585.     public function getCustomPaymentInstructions()
  1586.     {
  1587.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCustomPaymentInstructions', []);
  1588.         return parent::getCustomPaymentInstructions();
  1589.     }
  1590.     /**
  1591.      * {@inheritDoc}
  1592.      */
  1593.     public function showCustomPaymentInstructions(): bool
  1594.     {
  1595.         $this->__initializer__ && $this->__initializer__->__invoke($this'showCustomPaymentInstructions', []);
  1596.         return parent::showCustomPaymentInstructions();
  1597.     }
  1598.     /**
  1599.      * {@inheritDoc}
  1600.      */
  1601.     public function setDonationText(string $donationText NULL)
  1602.     {
  1603.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDonationText', [$donationText]);
  1604.         return parent::setDonationText($donationText);
  1605.     }
  1606.     /**
  1607.      * {@inheritDoc}
  1608.      */
  1609.     public function getDonationText()
  1610.     {
  1611.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDonationText', []);
  1612.         return parent::getDonationText();
  1613.     }
  1614.     /**
  1615.      * {@inheritDoc}
  1616.      */
  1617.     public function isLocked()
  1618.     {
  1619.         $this->__initializer__ && $this->__initializer__->__invoke($this'isLocked', []);
  1620.         return parent::isLocked();
  1621.     }
  1622.     /**
  1623.      * {@inheritDoc}
  1624.      */
  1625.     public function isHidden()
  1626.     {
  1627.         $this->__initializer__ && $this->__initializer__->__invoke($this'isHidden', []);
  1628.         return parent::isHidden();
  1629.     }
  1630.     /**
  1631.      * {@inheritDoc}
  1632.      */
  1633.     public function getCampaign()
  1634.     {
  1635.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCampaign', []);
  1636.         return parent::getCampaign();
  1637.     }
  1638.     /**
  1639.      * {@inheritDoc}
  1640.      */
  1641.     public function getObjectName()
  1642.     {
  1643.         $this->__initializer__ && $this->__initializer__->__invoke($this'getObjectName', []);
  1644.         return parent::getObjectName();
  1645.     }
  1646.     /**
  1647.      * {@inheritDoc}
  1648.      */
  1649.     public function setTimeZone($timezone)
  1650.     {
  1651.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTimeZone', [$timezone]);
  1652.         return parent::setTimeZone($timezone);
  1653.     }
  1654.     /**
  1655.      * {@inheritDoc}
  1656.      */
  1657.     public function getTimezone()
  1658.     {
  1659.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTimezone', []);
  1660.         return parent::getTimezone();
  1661.     }
  1662.     /**
  1663.      * {@inheritDoc}
  1664.      */
  1665.     public function getTrackedParams()
  1666.     {
  1667.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTrackedParams', []);
  1668.         return parent::getTrackedParams();
  1669.     }
  1670.     /**
  1671.      * {@inheritDoc}
  1672.      */
  1673.     public function hasComponent($component)
  1674.     {
  1675.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasComponent', [$component]);
  1676.         return parent::hasComponent($component);
  1677.     }
  1678.     /**
  1679.      * {@inheritDoc}
  1680.      */
  1681.     public function setSmsReply(string $smsReply)
  1682.     {
  1683.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSmsReply', [$smsReply]);
  1684.         return parent::setSmsReply($smsReply);
  1685.     }
  1686.     /**
  1687.      * {@inheritDoc}
  1688.      */
  1689.     public function getSmsReply()
  1690.     {
  1691.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSmsReply', []);
  1692.         return parent::getSmsReply();
  1693.     }
  1694.     /**
  1695.      * {@inheritDoc}
  1696.      */
  1697.     public function setHasRaffle($hasRaffle)
  1698.     {
  1699.         $this->__initializer__ && $this->__initializer__->__invoke($this'setHasRaffle', [$hasRaffle]);
  1700.         return parent::setHasRaffle($hasRaffle);
  1701.     }
  1702.     /**
  1703.      * {@inheritDoc}
  1704.      */
  1705.     public function getHasRaffle()
  1706.     {
  1707.         $this->__initializer__ && $this->__initializer__->__invoke($this'getHasRaffle', []);
  1708.         return parent::getHasRaffle();
  1709.     }
  1710.     /**
  1711.      * {@inheritDoc}
  1712.      */
  1713.     public function setRaffleStart(\DateTime $raffleStart)
  1714.     {
  1715.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRaffleStart', [$raffleStart]);
  1716.         return parent::setRaffleStart($raffleStart);
  1717.     }
  1718.     /**
  1719.      * {@inheritDoc}
  1720.      */
  1721.     public function getRaffleStart()
  1722.     {
  1723.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRaffleStart', []);
  1724.         return parent::getRaffleStart();
  1725.     }
  1726.     /**
  1727.      * {@inheritDoc}
  1728.      */
  1729.     public function setRaffleEnd(\DateTime $raffleEnd)
  1730.     {
  1731.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRaffleEnd', [$raffleEnd]);
  1732.         return parent::setRaffleEnd($raffleEnd);
  1733.     }
  1734.     /**
  1735.      * {@inheritDoc}
  1736.      */
  1737.     public function getRaffleEnd()
  1738.     {
  1739.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRaffleEnd', []);
  1740.         return parent::getRaffleEnd();
  1741.     }
  1742.     /**
  1743.      * {@inheritDoc}
  1744.      */
  1745.     public function isRaffleActive(): bool
  1746.     {
  1747.         $this->__initializer__ && $this->__initializer__->__invoke($this'isRaffleActive', []);
  1748.         return parent::isRaffleActive();
  1749.     }
  1750.     /**
  1751.      * {@inheritDoc}
  1752.      */
  1753.     public function setRaffleShowWinnersOnHomepage(bool $raffleShowWinnersOnHomepage)
  1754.     {
  1755.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRaffleShowWinnersOnHomepage', [$raffleShowWinnersOnHomepage]);
  1756.         return parent::setRaffleShowWinnersOnHomepage($raffleShowWinnersOnHomepage);
  1757.     }
  1758.     /**
  1759.      * {@inheritDoc}
  1760.      */
  1761.     public function getRaffleShowWinnersOnHomepage(): bool
  1762.     {
  1763.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRaffleShowWinnersOnHomepage', []);
  1764.         return parent::getRaffleShowWinnersOnHomepage();
  1765.     }
  1766.     /**
  1767.      * {@inheritDoc}
  1768.      */
  1769.     public function getTwilioCampaign()
  1770.     {
  1771.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTwilioCampaign', []);
  1772.         return parent::getTwilioCampaign();
  1773.     }
  1774.     /**
  1775.      * {@inheritDoc}
  1776.      */
  1777.     public function setTwilioCampaign($twilioCampaign)
  1778.     {
  1779.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTwilioCampaign', [$twilioCampaign]);
  1780.         return parent::setTwilioCampaign($twilioCampaign);
  1781.     }
  1782.     /**
  1783.      * {@inheritDoc}
  1784.      */
  1785.     public function hasTwilioCampaign()
  1786.     {
  1787.         $this->__initializer__ && $this->__initializer__->__invoke($this'hasTwilioCampaign', []);
  1788.         return parent::hasTwilioCampaign();
  1789.     }
  1790.     /**
  1791.      * {@inheritDoc}
  1792.      */
  1793.     public function checkTwilioCampaign(\Doctrine\ORM\Event\PreFlushEventArgs $event)
  1794.     {
  1795.         $this->__initializer__ && $this->__initializer__->__invoke($this'checkTwilioCampaign', [$event]);
  1796.         return parent::checkTwilioCampaign($event);
  1797.     }
  1798.     /**
  1799.      * {@inheritDoc}
  1800.      */
  1801.     public function getFees()
  1802.     {
  1803.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFees', []);
  1804.         return parent::getFees();
  1805.     }
  1806.     /**
  1807.      * {@inheritDoc}
  1808.      */
  1809.     public function setFees($fees)
  1810.     {
  1811.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFees', [$fees]);
  1812.         return parent::setFees($fees);
  1813.     }
  1814.     /**
  1815.      * {@inheritDoc}
  1816.      */
  1817.     public function getCampaignDetails(): ?\Doctrine\Common\Collections\Collection
  1818.     {
  1819.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCampaignDetails', []);
  1820.         return parent::getCampaignDetails();
  1821.     }
  1822.     /**
  1823.      * {@inheritDoc}
  1824.      */
  1825.     public function setCampaignDetails(?\Doctrine\Common\Collections\Collection $campaignDetails): void
  1826.     {
  1827.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCampaignDetails', [$campaignDetails]);
  1828.         parent::setCampaignDetails($campaignDetails);
  1829.     }
  1830.     /**
  1831.      * {@inheritDoc}
  1832.      */
  1833.     public function addCampaignDetail(\Bidcoz\Bundle\CoreBundle\Entity\Contact\CampaignDetail $campaignDetail): void
  1834.     {
  1835.         $this->__initializer__ && $this->__initializer__->__invoke($this'addCampaignDetail', [$campaignDetail]);
  1836.         parent::addCampaignDetail($campaignDetail);
  1837.     }
  1838.     /**
  1839.      * {@inheritDoc}
  1840.      */
  1841.     public function removeCampaignDetail(\Bidcoz\Bundle\CoreBundle\Entity\Contact\CampaignDetail $campaignDetail): void
  1842.     {
  1843.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeCampaignDetail', [$campaignDetail]);
  1844.         parent::removeCampaignDetail($campaignDetail);
  1845.     }
  1846.     /**
  1847.      * {@inheritDoc}
  1848.      */
  1849.     public function getSponsorships(): ?\Doctrine\Common\Collections\Collection
  1850.     {
  1851.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSponsorships', []);
  1852.         return parent::getSponsorships();
  1853.     }
  1854.     /**
  1855.      * {@inheritDoc}
  1856.      */
  1857.     public function setSponsorships(?\Doctrine\Common\Collections\Collection $sponsorships): void
  1858.     {
  1859.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSponsorships', [$sponsorships]);
  1860.         parent::setSponsorships($sponsorships);
  1861.     }
  1862.     /**
  1863.      * {@inheritDoc}
  1864.      */
  1865.     public function addSponsorship(\Bidcoz\Bundle\CoreBundle\Entity\Sponsorship\Sponsorship $sponsorship): void
  1866.     {
  1867.         $this->__initializer__ && $this->__initializer__->__invoke($this'addSponsorship', [$sponsorship]);
  1868.         parent::addSponsorship($sponsorship);
  1869.     }
  1870.     /**
  1871.      * {@inheritDoc}
  1872.      */
  1873.     public function removeSponsorship(\Bidcoz\Bundle\CoreBundle\Entity\Sponsorship\Sponsorship $sponsorship): void
  1874.     {
  1875.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeSponsorship', [$sponsorship]);
  1876.         parent::removeSponsorship($sponsorship);
  1877.     }
  1878.     /**
  1879.      * {@inheritDoc}
  1880.      */
  1881.     public function getSponsorshipLevels(): ?\Doctrine\Common\Collections\Collection
  1882.     {
  1883.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSponsorshipLevels', []);
  1884.         return parent::getSponsorshipLevels();
  1885.     }
  1886.     /**
  1887.      * {@inheritDoc}
  1888.      */
  1889.     public function setSponsorshipLevels(?\Doctrine\Common\Collections\Collection $sponsorshipLevels): void
  1890.     {
  1891.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSponsorshipLevels', [$sponsorshipLevels]);
  1892.         parent::setSponsorshipLevels($sponsorshipLevels);
  1893.     }
  1894.     /**
  1895.      * {@inheritDoc}
  1896.      */
  1897.     public function getRegistrations(): ?\Doctrine\Common\Collections\Collection
  1898.     {
  1899.         $this->__initializer__ && $this->__initializer__->__invoke($this'getRegistrations', []);
  1900.         return parent::getRegistrations();
  1901.     }
  1902.     /**
  1903.      * {@inheritDoc}
  1904.      */
  1905.     public function setRegistrations(?\Doctrine\Common\Collections\Collection $registrations): void
  1906.     {
  1907.         $this->__initializer__ && $this->__initializer__->__invoke($this'setRegistrations', [$registrations]);
  1908.         parent::setRegistrations($registrations);
  1909.     }
  1910.     /**
  1911.      * {@inheritDoc}
  1912.      */
  1913.     public function getPurchases(): ?\Doctrine\Common\Collections\Collection
  1914.     {
  1915.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPurchases', []);
  1916.         return parent::getPurchases();
  1917.     }
  1918.     /**
  1919.      * {@inheritDoc}
  1920.      */
  1921.     public function getPaddleRaiseDonationPurchases(): ?\Doctrine\Common\Collections\Collection
  1922.     {
  1923.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPaddleRaiseDonationPurchases', []);
  1924.         return parent::getPaddleRaiseDonationPurchases();
  1925.     }
  1926.     /**
  1927.      * {@inheritDoc}
  1928.      */
  1929.     public function setPurchases(?\Doctrine\Common\Collections\Collection $purchases): void
  1930.     {
  1931.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPurchases', [$purchases]);
  1932.         parent::setPurchases($purchases);
  1933.     }
  1934.     /**
  1935.      * {@inheritDoc}
  1936.      */
  1937.     public function addPurchase(\Bidcoz\Bundle\CoreBundle\Entity\Purchase\Purchase $purchase): void
  1938.     {
  1939.         $this->__initializer__ && $this->__initializer__->__invoke($this'addPurchase', [$purchase]);
  1940.         parent::addPurchase($purchase);
  1941.     }
  1942.     /**
  1943.      * {@inheritDoc}
  1944.      */
  1945.     public function removePurchase(\Bidcoz\Bundle\CoreBundle\Entity\Purchase\Purchase $purchase): void
  1946.     {
  1947.         $this->__initializer__ && $this->__initializer__->__invoke($this'removePurchase', [$purchase]);
  1948.         parent::removePurchase($purchase);
  1949.     }
  1950.     /**
  1951.      * {@inheritDoc}
  1952.      */
  1953.     public function getTransactions(): ?\Doctrine\Common\Collections\Collection
  1954.     {
  1955.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTransactions', []);
  1956.         return parent::getTransactions();
  1957.     }
  1958.     /**
  1959.      * {@inheritDoc}
  1960.      */
  1961.     public function setTransactions(?\Doctrine\Common\Collections\Collection $transactions): void
  1962.     {
  1963.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTransactions', [$transactions]);
  1964.         parent::setTransactions($transactions);
  1965.     }
  1966.     /**
  1967.      * {@inheritDoc}
  1968.      */
  1969.     public function addTransaction(\Bidcoz\Bundle\CoreBundle\Entity\Transaction\Transaction $transaction): void
  1970.     {
  1971.         $this->__initializer__ && $this->__initializer__->__invoke($this'addTransaction', [$transaction]);
  1972.         parent::addTransaction($transaction);
  1973.     }
  1974.     /**
  1975.      * {@inheritDoc}
  1976.      */
  1977.     public function removeTransaction(\Bidcoz\Bundle\CoreBundle\Entity\Transaction\Transaction $transaction): void
  1978.     {
  1979.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeTransaction', [$transaction]);
  1980.         parent::removeTransaction($transaction);
  1981.     }
  1982.     /**
  1983.      * {@inheritDoc}
  1984.      */
  1985.     public function getDonations(): ?\Doctrine\Common\Collections\Collection
  1986.     {
  1987.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDonations', []);
  1988.         return parent::getDonations();
  1989.     }
  1990.     /**
  1991.      * {@inheritDoc}
  1992.      */
  1993.     public function setDonations(?\Doctrine\Common\Collections\Collection $donations): void
  1994.     {
  1995.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDonations', [$donations]);
  1996.         parent::setDonations($donations);
  1997.     }
  1998.     /**
  1999.      * {@inheritDoc}
  2000.      */
  2001.     public function getDonatedItems(): ?\Doctrine\Common\Collections\Collection
  2002.     {
  2003.         $this->__initializer__ && $this->__initializer__->__invoke($this'getDonatedItems', []);
  2004.         return parent::getDonatedItems();
  2005.     }
  2006.     /**
  2007.      * {@inheritDoc}
  2008.      */
  2009.     public function setDonatedItems(?\Doctrine\Common\Collections\Collection $donatedItems): void
  2010.     {
  2011.         $this->__initializer__ && $this->__initializer__->__invoke($this'setDonatedItems', [$donatedItems]);
  2012.         parent::setDonatedItems($donatedItems);
  2013.     }
  2014.     /**
  2015.      * {@inheritDoc}
  2016.      */
  2017.     public function getBidNumbers(): ?\Doctrine\Common\Collections\Collection
  2018.     {
  2019.         $this->__initializer__ && $this->__initializer__->__invoke($this'getBidNumbers', []);
  2020.         return parent::getBidNumbers();
  2021.     }
  2022.     /**
  2023.      * {@inheritDoc}
  2024.      */
  2025.     public function setBidNumbers(?\Doctrine\Common\Collections\Collection $bidNumbers): void
  2026.     {
  2027.         $this->__initializer__ && $this->__initializer__->__invoke($this'setBidNumbers', [$bidNumbers]);
  2028.         parent::setBidNumbers($bidNumbers);
  2029.     }
  2030.     /**
  2031.      * {@inheritDoc}
  2032.      */
  2033.     public function addBidNumber(\Bidcoz\Bundle\CoreBundle\Entity\Auction\BidNumber $bidNumber): void
  2034.     {
  2035.         $this->__initializer__ && $this->__initializer__->__invoke($this'addBidNumber', [$bidNumber]);
  2036.         parent::addBidNumber($bidNumber);
  2037.     }
  2038.     /**
  2039.      * {@inheritDoc}
  2040.      */
  2041.     public function removeBidNumber(\Bidcoz\Bundle\CoreBundle\Entity\Auction\BidNumber $bidNumber): void
  2042.     {
  2043.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeBidNumber', [$bidNumber]);
  2044.         parent::removeBidNumber($bidNumber);
  2045.     }
  2046.     /**
  2047.      * {@inheritDoc}
  2048.      */
  2049.     public function getTicketGroups(): ?\Doctrine\Common\Collections\Collection
  2050.     {
  2051.         $this->__initializer__ && $this->__initializer__->__invoke($this'getTicketGroups', []);
  2052.         return parent::getTicketGroups();
  2053.     }
  2054.     /**
  2055.      * {@inheritDoc}
  2056.      */
  2057.     public function setTicketGroups(?\Doctrine\Common\Collections\Collection $ticketGroups): void
  2058.     {
  2059.         $this->__initializer__ && $this->__initializer__->__invoke($this'setTicketGroups', [$ticketGroups]);
  2060.         parent::setTicketGroups($ticketGroups);
  2061.     }
  2062.     /**
  2063.      * {@inheritDoc}
  2064.      */
  2065.     public function addTicketGroup(\Bidcoz\Bundle\CoreBundle\Entity\Ticket\TicketGroup $ticketGroup): void
  2066.     {
  2067.         $this->__initializer__ && $this->__initializer__->__invoke($this'addTicketGroup', [$ticketGroup]);
  2068.         parent::addTicketGroup($ticketGroup);
  2069.     }
  2070.     /**
  2071.      * {@inheritDoc}
  2072.      */
  2073.     public function removeTicketGroup(\Bidcoz\Bundle\CoreBundle\Entity\Ticket\TicketGroup $ticketGroup): void
  2074.     {
  2075.         $this->__initializer__ && $this->__initializer__->__invoke($this'removeTicketGroup', [$ticketGroup]);
  2076.         parent::removeTicketGroup($ticketGroup);
  2077.     }
  2078.     /**
  2079.      * {@inheritDoc}
  2080.      */
  2081.     public function setShopGoal($goal)
  2082.     {
  2083.         $this->__initializer__ && $this->__initializer__->__invoke($this'setShopGoal', [$goal]);
  2084.         return parent::setShopGoal($goal);
  2085.     }
  2086.     /**
  2087.      * {@inheritDoc}
  2088.      */
  2089.     public function getShopGoal()
  2090.     {
  2091.         $this->__initializer__ && $this->__initializer__->__invoke($this'getShopGoal', []);
  2092.         return parent::getShopGoal();
  2093.     }
  2094.     /**
  2095.      * {@inheritDoc}
  2096.      */
  2097.     public function setFundANeedGoal($goal)
  2098.     {
  2099.         $this->__initializer__ && $this->__initializer__->__invoke($this'setFundANeedGoal', [$goal]);
  2100.         return parent::setFundANeedGoal($goal);
  2101.     }
  2102.     /**
  2103.      * {@inheritDoc}
  2104.      */
  2105.     public function getFundANeedGoal()
  2106.     {
  2107.         $this->__initializer__ && $this->__initializer__->__invoke($this'getFundANeedGoal', []);
  2108.         return parent::getFundANeedGoal();
  2109.     }
  2110.     /**
  2111.      * {@inheritDoc}
  2112.      */
  2113.     public function setPaddleRaiseGoal($goal)
  2114.     {
  2115.         $this->__initializer__ && $this->__initializer__->__invoke($this'setPaddleRaiseGoal', [$goal]);
  2116.         return parent::setPaddleRaiseGoal($goal);
  2117.     }
  2118.     /**
  2119.      * {@inheritDoc}
  2120.      */
  2121.     public function getPaddleRaiseGoal()
  2122.     {
  2123.         $this->__initializer__ && $this->__initializer__->__invoke($this'getPaddleRaiseGoal', []);
  2124.         return parent::getPaddleRaiseGoal();
  2125.     }
  2126.     /**
  2127.      * {@inheritDoc}
  2128.      */
  2129.     public function setSendPurchaseEmail(bool $sendPurchaseEmail)
  2130.     {
  2131.         $this->__initializer__ && $this->__initializer__->__invoke($this'setSendPurchaseEmail', [$sendPurchaseEmail]);
  2132.         return parent::setSendPurchaseEmail($sendPurchaseEmail);
  2133.     }
  2134.     /**
  2135.      * {@inheritDoc}
  2136.      */
  2137.     public function getSendPurchaseEmail(): bool
  2138.     {
  2139.         $this->__initializer__ && $this->__initializer__->__invoke($this'getSendPurchaseEmail', []);
  2140.         return parent::getSendPurchaseEmail();
  2141.     }
  2142.     /**
  2143.      * {@inheritDoc}
  2144.      */
  2145.     public function getCrewUpSetupDisplayName(): string
  2146.     {
  2147.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCrewUpSetupDisplayName', []);
  2148.         return parent::getCrewUpSetupDisplayName();
  2149.     }
  2150.     /**
  2151.      * {@inheritDoc}
  2152.      */
  2153.     public function setCrewUpSetupDisplayName(string $crewUpSetupDisplayName): \Bidcoz\Bundle\CoreBundle\Entity\Campaign
  2154.     {
  2155.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCrewUpSetupDisplayName', [$crewUpSetupDisplayName]);
  2156.         return parent::setCrewUpSetupDisplayName($crewUpSetupDisplayName);
  2157.     }
  2158.     /**
  2159.      * {@inheritDoc}
  2160.      */
  2161.     public function getCrewUpSetupTextDescription(): ?string
  2162.     {
  2163.         $this->__initializer__ && $this->__initializer__->__invoke($this'getCrewUpSetupTextDescription', []);
  2164.         return parent::getCrewUpSetupTextDescription();
  2165.     }
  2166.     /**
  2167.      * {@inheritDoc}
  2168.      */
  2169.     public function setCrewUpSetupTextDescription(?string $crewUpSetupTextDescription): \Bidcoz\Bundle\CoreBundle\Entity\Campaign
  2170.     {
  2171.         $this->__initializer__ && $this->__initializer__->__invoke($this'setCrewUpSetupTextDescription', [$crewUpSetupTextDescription]);
  2172.         return parent::setCrewUpSetupTextDescription($crewUpSetupTextDescription);
  2173.     }
  2174. }