TimeSlot.php 306 B

1234567891011121314151617
  1. <?php
  2. namespace App\Helpers;
  3. class TimeSlot {
  4. public $start = null;
  5. public $end = null;
  6. public $processed = false;
  7. public function __construct(\DateTime $_start, \DateTime $_end)
  8. {
  9. $this->start = $_start->getTimestamp();
  10. $this->end = $_end->getTimestamp();
  11. }
  12. }