From cc3ccf81c83b93069a350f327f6c4ee242d563e1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 13 Oct 2022 14:06:57 +0200 Subject: [PATCH] Update default times --- Controller/ApplicationController.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Controller/ApplicationController.php b/Controller/ApplicationController.php index 920b592..5a787dc 100644 --- a/Controller/ApplicationController.php +++ b/Controller/ApplicationController.php @@ -165,22 +165,22 @@ class ApplicationController extends AbstractController { //Check if afternoon } elseif ($slot == 'Afternoon') { //Set begin at 18h - $session->setBegin(new \DateTime('14:00:00')); + $session->setBegin(new \DateTime('15:30:00')); //Set length at 5h - $session->setLength(new \DateTime('05:00:00')); + $session->setLength(new \DateTime('05:30:00')); //Check if evening } elseif ($slot == 'Evening') { //Set begin at 19h00 - $session->setBegin(new \DateTime('19:00:00')); + $session->setBegin(new \DateTime('19:30:00')); //Set length at 5h - $session->setLength(new \DateTime('06:00:00')); + $session->setLength(new \DateTime('05:30:00')); //Check if next day is premium if ($premium) { //Set length at 7h - $session->setLength(new \DateTime('07:00:00')); + $session->setLength(new \DateTime('06:30:00')); } //Check if after } else { -- 2.41.0