from = $from; $this->to = $to; } else { $this->from = $to; $this->to = $from; } } } /** * check if DateTime $dateCheck is within this range * @param \DateTime $dateCheck * @return bool */ public function inRange(\DateTime $dateCheck) : bool { return $dateCheck >= $this->from && $dateCheck <= $this->to; } }