start = $start; $this->stop = $stop; } public function fromStart() { return $this->start . ':'; } public function __toString() { // We are non-inclusive from the start return ($this->start - 1) . ':' . $this->stop; } }