public function addTimeWindow(TimeWindow $timeWindow)
 {
     $this->timeWindows[$timeWindow->generateHash()] = $timeWindow;
 }
Ejemplo n.º 2
0
 public function removeTime($entityId)
 {
     TimeWindow::deleteAll(['event_id' => $entityId]);
 }