Newscoop\Subscription\Section::setStartDate PHP 메소드

setStartDate() 공개 메소드

Set start date
public setStartDate ( DateTime $date ) : Newscoop\Entity\SubscriptionSection
$date DateTime
리턴 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