Completed
Push — dev5 ( 2669f0...795d1f )
by Ron
09:30
created
database/factories/CustomerContactsFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Faker\Generator as Faker;
6 6
 
7
-$factory->define(App\CustomerContacts::class, function (Faker $faker) {
7
+$factory->define(App\CustomerContacts::class, function(Faker $faker) {
8 8
     return [
9 9
         'cust_id' => factory(App\Customers::class)->create()->cust_id,
10 10
         'name'    => $faker->name,
Please login to merge, or discard this patch.
database/factories/CustomerFilesFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     ];
13 13
 });
14 14
 
15
-$factory->define(App\CustomerFiles::class, function (Faker $faker) {
15
+$factory->define(App\CustomerFiles::class, function(Faker $faker) {
16 16
     return [
17 17
         'file_id' => factory(App\Files::class)->create()->file_id,
18 18
         'file_type_id' => 1,
Please login to merge, or discard this patch.