Completed
Push — master ( bd7888...7970f7 )
by Adam
06:00
created
app/Http/Controllers/Controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     {
35 35
         // Zapobiegaj infinite loop
36 36
         if (back()->getTargetUrl() === url()->current()) {
37
-            Log::info('Request loop: '. back()->getTargetUrl());
37
+            Log::info('Request loop: '.back()->getTargetUrl());
38 38
             return redirect(route('room.index'))->with($data);
39 39
         }
40 40
 
Please login to merge, or discard this patch.
app/Http/Controllers/ReservationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
             $guest = Guest::select('id')->findOrFail($guestId);
139 139
         } catch (ModelNotFoundException $e) {
140 140
             // TODO: logger helper
141
-            Log::warning(__CLASS__.'::'.__FUNCTION__.' at '.__LINE__.': '. $e->getMessage());
141
+            Log::warning(__CLASS__.'::'.__FUNCTION__.' at '.__LINE__.': '.$e->getMessage());
142 142
             return $this->returnBack([
143 143
                 'message'     => trans('general.object_not_found'),
144 144
                 'alert-class' => 'alert-danger',
Please login to merge, or discard this patch.