Completed
Push — master ( 566e3d...cbf465 )
by Ariel
06:35
created
src/Timetable/Strategies/BaseTimetableStrategy.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
     protected function initTimetable($starting, $days)
12 12
     {
13 13
         $this->timetable
14
-             ->format('date.service.time')
15
-             ->from($starting)
16
-             ->future($days)
17
-             ->init();
14
+                ->format('date.service.time')
15
+                ->from($starting)
16
+                ->future($days)
17
+                ->init();
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
src/Timetable/Strategies/TimetableDateslotStrategy.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,10 +17,10 @@
 block discarded – undo
17 17
     protected function initTimetable($starting, $days)
18 18
     {
19 19
         $this->timetable
20
-             ->format('date.service.time')
21
-             ->from($starting)
22
-             ->future($days)
23
-             ->init();
20
+                ->format('date.service.time')
21
+                ->from($starting)
22
+                ->future($days)
23
+                ->init();
24 24
     }
25 25
 
26 26
     /**
Please login to merge, or discard this patch.