Newscoop\Subscription\Section::__construct PHP Method

__construct() public method

public __construct ( Subscription $subscription, integer $sectionNumber )
$subscription Subscription
$sectionNumber integer
    public function __construct(Subscription $subscription, $sectionNumber)
    {
        $this->subscription = $subscription;
        $this->subscription->addSection($this);
        $this->sectionNumber = (int) $sectionNumber;
        $this->noticeSent = 'N';
        $this->paidDays = 0;
    }