Completed
Push — dev5 ( 096a7b...37965d )
by Ron
09:47
created
app/Http/Controllers/FileLinks/LinkFilesController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
             {
82 82
                 $fileID = $this->saveFile($save->getFile(), $linkID);
83 83
                 
84
-                return response()->json(['success' => true]);;
84
+                return response()->json(['success' => true]); ;
85 85
             }
86 86
         
87 87
             //  Get the current progress
Please login to merge, or discard this patch.
app/Http/Controllers/FileLinks/FileLinksController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
         {
140 140
             $hash = strtolower(Str::random(15));
141 141
             $dup  = FileLinks::where('link_hash', $hash)->get()->count();
142
-        }while($dup != 0);
142
+        } while($dup != 0);
143 143
         
144 144
         //  If the "customer id" field is populated, separate the ID from the name and prepare for insertion.
145 145
         if($data->customer_tag != null)
Please login to merge, or discard this patch.