Test Failed
Push — dev5 ( c43caf...f1e67f )
by Ron
06:59
created
app/Http/Controllers/FileLinks/GuestLinksController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
         if($files == 0 && $details->allow_upload === 'No')
54 54
         {
55
-            Log::warning('Visitor ' . \Request::ip() . ' visited a link that they cannot do anything with.  Hash - ' . $id);
55
+            Log::warning('Visitor '.\Request::ip().' visited a link that they cannot do anything with.  Hash - '.$id);
56 56
             return view('links.guestDeadLink');
57 57
         }
58 58
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         //  Verify that the upload is valid and being processed
93 93
         if($receiver->isUploaded() === false)
94 94
         {
95
-            Log::error('Upload File Missing - ' .
95
+            Log::error('Upload File Missing - '.
96 96
             /** @scrutinizer ignore-type */
97 97
             $request->toArray());
98 98
             throw new UploadMissingFileException();
Please login to merge, or discard this patch.
app/Http/Controllers/Customers/CustomerController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -116,8 +116,8 @@
 block discarded – undo
116 116
                 $searchResults = new CustomersCollection(
117 117
                     Customers::orderBy($orderBy, $orderUp)
118 118
                         ->where('cust_id', 'like', '%'.$request->name.'%')
119
-                        ->orWhere('name', 'like', '%'. $request->name.'%')
120
-                        ->orWhere('dba_name', 'like', '%'. $request->name.'%')
119
+                        ->orWhere('name', 'like', '%'.$request->name.'%')
120
+                        ->orWhere('dba_name', 'like', '%'.$request->name.'%')
121 121
                         // ->orWhere('city', 'like', '%'.$city.'%')
122 122
                         ->with('CustomerSystems.SystemTypes')
123 123
                         ->paginate($paginate));
Please login to merge, or discard this patch.