Test Failed
Branch dev5 (bf6274)
by Ron
05:55
created
database/factories/Customers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use App\Customers;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(Customers::class, function (Faker $faker) {
8
+$factory->define(Customers::class, function(Faker $faker) {
9 9
     return [
10 10
         //
11 11
         'cust_id'  => rand(50, 5000),
Please login to merge, or discard this patch.
app/Http/Controllers/FileLinks/FileLinksController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             $id = Auth::user()->user_id;
57 57
         }
58 58
         //  If the user is trying to pull someone elses links, they must be able to manage users
59
-        else if ($id != Auth::user()->user_id)
59
+        else if($id != Auth::user()->user_id)
60 60
         {
61 61
             $this->authorize('hasAccess', 'manage_users');
62 62
         }
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             //  Verify that the upload is valid and being processed
95 95
             if($receiver->isUploaded() === false)
96 96
             {
97
-                Log::error('Upload File Missing - ' .
97
+                Log::error('Upload File Missing - '.
98 98
                 /** @scrutinizer ignore-type */
99 99
                 $request->toArray());
100 100
                 throw new UploadMissingFileException();
Please login to merge, or discard this patch.