TimeSlot.php 275 B

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