Example #1
0
 /**
  * Create a new iterator for the number of minutes in a range.
  *
  * @param DateTime $start The start date of the range
  * @param DateTime $end The end date of the range
  */
 public function __construct(DateTime $start, DateTime $end)
 {
     $this->start = $start->withSeconds(0)->timestamp();
     $this->end = $end->withSeconds(0)->timestamp();
     $this->rewind();
 }