Completed
Push — dev5 ( 863f68...2669f0 )
by Ron
13:20 queued 19s
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) use ($factory) {
7
+$factory->define(App\CustomerContacts::class, function(Faker $faker) use ($factory) {
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/CustomerNotesFactory.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\CustomerNotes::class, function (Faker $faker) {
7
+$factory->define(App\CustomerNotes::class, function(Faker $faker) {
8 8
     return [
9 9
         'cust_id' => factory(App\Customers::class)->create()->cust_id,
10 10
         'user_id' => 1,
Please login to merge, or discard this patch.