Passed
Push — dev5 ( 1fbf2b...8c60e2 )
by Ron
09:02
created
app/Http/Controllers/FileLinks/GuestLinksController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     //  Show the link details for the user
30 30
     public function show($id)
31 31
     {
32
-        Log::debug('Route ' . Route::currentRouteName() . ' visited by IP Address ' . \Request::ip());
32
+        Log::debug('Route '.Route::currentRouteName().' visited by IP Address '.\Request::ip());
33 33
 
34 34
         $details = FileLinks::where('link_hash', $id)->first();
35 35
 
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     //  Notify the owner of the link that files were uploaded
147 147
     public function notify(Request $request, $id)
148 148
     {
149
-        Log::debug('Route ' . Route::currentRouteName() . ' visited by IP Address ' . \Request::ip() . '. Submitted Data - ', $request->toArray());
149
+        Log::debug('Route '.Route::currentRouteName().' visited by IP Address '.\Request::ip().'. Submitted Data - ', $request->toArray());
150 150
 
151 151
         $request->validate([
152 152
             '_complete' => 'required',
Please login to merge, or discard this patch.