from = $from; $this->to = $to; } /** * Check if a number is in the range * * @param int $toTest * @return boolean */ public function isInRange(int $toTest){ return $this->from <= $toTest && $toTest < $this->to; } }