]> Raphaël G. Git Repositories - airbundle/commitdiff
Update default times
authorRaphaël Gertz <git@rapsys.eu>
Thu, 13 Oct 2022 12:06:57 +0000 (14:06 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 13 Oct 2022 12:06:57 +0000 (14:06 +0200)
Controller/ApplicationController.php

index 920b5928451f9919d348ba7ae8de81a633cb04a3..5a787dc4a95af423da5db58084517030d9c386c2 100644 (file)
@@ -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 {