Passed
Push — master ( abbe1f...f3d6e0 )
by Adam
06:34
created
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
     protected function mapWebRoutes()
53 53
     {
54 54
         Route::middleware('web')
55
-             ->namespace($this->namespace)
56
-             ->group(base_path('routes/web.php'));
55
+                ->namespace($this->namespace)
56
+                ->group(base_path('routes/web.php'));
57 57
     }
58 58
 
59 59
     /**
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
     protected function mapApiRoutes()
67 67
     {
68 68
         Route::prefix('api')
69
-             ->middleware('api')
70
-             ->namespace($this->namespace)
71
-             ->group(base_path('routes/api.php'));
69
+                ->middleware('api')
70
+                ->namespace($this->namespace)
71
+                ->group(base_path('routes/api.php'));
72 72
     }
73 73
 }
Please login to merge, or discard this patch.
app/Http/Controllers/ReservationController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
                 'type'     => 'text',
569 569
                 'optional' => [
570 570
                     'required'    => 'required',
571
-                    'class'       => 'datepicker'. ($forAdd ? ' start-date' : null),
571
+                    'class'       => 'datepicker'.($forAdd ? ' start-date' : null),
572 572
                     'placeholder' => 'dd.mm.rrrr',
573 573
                 ],
574 574
             ],
@@ -581,7 +581,7 @@  discard block
 block discarded – undo
581 581
                 'type'     => 'text',
582 582
                 'optional' => [
583 583
                     'required'    => 'required',
584
-                    'class'       => 'datepicker'. ($forAdd ? ' end-date' : null),
584
+                    'class'       => 'datepicker'.($forAdd ? ' end-date' : null),
585 585
                     'placeholder' => 'dd.mm.rrrr',
586 586
                 ],
587 587
             ],
Please login to merge, or discard this patch.