Newscoop\Subscription\Section::setStartDate PHP Method

setStartDate() public method

Set start date
public setStartDate ( DateTime $date ) : Newscoop\Entity\SubscriptionSection
$date DateTime
return Newscoop\Entity\SubscriptionSection
    public function setStartDate(\DateTime $date)
    {
        $this->startDate = $date;
    }

Usage Example

 public function setStartDate(\DateTime $date)
 {
     $this->__load();
     return parent::setStartDate($date);
 }
All Usage Examples Of Newscoop\Subscription\Section::setStartDate