@@ -52,7 +52,7 @@ discard block |
||
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 |
||
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(); |
@@ -116,8 +116,8 @@ |
||
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)); |