Test Failed
Push — dev5 ( 12da53...ea9e9d )
by Ron
07:49
created
database/seeds/EquipmentSeeder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
                 SystemDataFields::create([
58 58
                     'sys_id' => $sys->sys_id,
59 59
                     'data_type_id' => $i,
60
-                    'order' => $i-1,
60
+                    'order' => $i - 1,
61 61
                 ]);
62 62
             }
63 63
         }
Please login to merge, or discard this patch.
database/seeds/DatabaseSeeder.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
     public function run()
13 13
     {
14 14
         //  TODO:  add seeders for demo setup
15
-         $this->call(UserTableSeeder::class);
16
-         $this->call(EquipmentSeeder::class);
17
-         $this->call(CustomerSeeder::class);
18
-         $this->call(TechTipsSeeder::class);
15
+            $this->call(UserTableSeeder::class);
16
+            $this->call(EquipmentSeeder::class);
17
+            $this->call(CustomerSeeder::class);
18
+            $this->call(TechTipsSeeder::class);
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
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
         'cust_id'   => $faker->unique()->numberBetween(50, 10000),
11 11
         'parent_id' => null,
Please login to merge, or discard this patch.
database/factories/UserFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
         'first_name'       => $faker->firstName,
11 11
         'last_name'        => $faker->lastName,
12 12
         'email'            => $faker->unique()->safeEmail,
13
-        'password'         => bcrypt('password'),  //  All test users will have the password of 'password' to allow testing access
13
+        'password'         => bcrypt('password'), //  All test users will have the password of 'password' to allow testing access
14 14
         'remember_token'   => null, // Str::random(10),
15 15
         'password_expires' => null,
16 16
     ];
Please login to merge, or discard this patch.