Passed
Push — dev5 ( f1e67f...73d054 )
by Ron
06:18
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'  => $faker->unique()->numberBetween(50, 10000),
Please login to merge, or discard this patch.
database/factories/SystemTypesFactory.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\SystemTypes;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(SystemTypes::class, function (Faker $faker) {
8
+$factory->define(SystemTypes::class, function(Faker $faker) {
9 9
     return [
10 10
         //
11 11
         'cat_id' => factory(App\SystemCategories::class)->create()->cat_id,
Please login to merge, or discard this patch.
database/factories/SystemCategoriesFactory.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\SystemCategories;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(SystemCategories::class, function (Faker $faker) {
8
+$factory->define(SystemCategories::class, function(Faker $faker) {
9 9
     return [
10 10
         //
11 11
         'name' => $faker->text(15)
Please login to merge, or discard this patch.