Spatie\Analytics\Period::__construct PHP Method

__construct() public method

public __construct ( DateTime $startDate, DateTime $endDate )
$startDate DateTime
$endDate DateTime
    public function __construct(DateTime $startDate, DateTime $endDate)
    {
        if ($startDate > $endDate) {
            throw InvalidPeriod::startDateCannotBeAfterEndDate($startDate, $endDate);
        }
        $this->startDate = $startDate;
        $this->endDate = $endDate;
    }