Passed
Push — dev5 ( 0d97ef...978ab8 )
by Ron
08:29
created
database/factories/CustomerFileTypesFactory.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\CustomerFileTypes;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(CustomerFileTypes::class, function (Faker $faker) {
8
+$factory->define(CustomerFileTypes::class, function(Faker $faker) {
9 9
     return [
10 10
         'description' => $faker->unique()->name(),
11 11
     ];
Please login to merge, or discard this patch.
database/factories/CustomerContacts.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\CustomerContacts;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(CustomerContacts::class, function (Faker $faker) {
8
+$factory->define(CustomerContacts::class, function(Faker $faker) {
9 9
     return [
10 10
         'cust_id' => factory(App\Customers::class)->create(),
11 11
         'name'    => $faker->name(),
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
         'name' => $faker->unique()->text(15)
11 11
     ];
Please login to merge, or discard this patch.
database/factories/CustomerNotes.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\CustomerNotes;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(CustomerNotes::class, function (Faker $faker) {
8
+$factory->define(CustomerNotes::class, function(Faker $faker) {
9 9
     return [
10 10
         'cust_id'     => factory(App\Customers::class)->create()->cust_id,
11 11
         'user_id'     => factory(App\User::class)->create()->user_id,
Please login to merge, or discard this patch.
database/factories/TechTipComments.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\TechTipComments;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(TechTipComments::class, function (Faker $faker) {
8
+$factory->define(TechTipComments::class, function(Faker $faker) {
9 9
     return [
10 10
         'tip_id'  => factory(App\TechTips::class)->create()->tip_id,
11 11
         'user_id' => factory(App\User::class)->create()->user_id,
Please login to merge, or discard this patch.
database/factories/TechTipTypes.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\TechTipTypes;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(TechTipTypes::class, function (Faker $faker) {
8
+$factory->define(TechTipTypes::class, function(Faker $faker) {
9 9
     return [
10 10
         'description' => $faker->catchPhrase,
11 11
     ];
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
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use App\CustomerFiles;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(CustomerFiles::class, function (Faker $faker) {
8
+$factory->define(CustomerFiles::class, function(Faker $faker) {
9 9
     return [
10 10
         'file_id'      => factory(App\Files::class)->create()->file_id,
11 11
         'file_type_id' => factory(App\CustomerFileTypes::class)->create()->file_type_id,
Please login to merge, or discard this patch.
database/factories/SystemDataFieldTypesFactory.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\SystemDataFieldTypes;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(SystemDataFieldTypes::class, function (Faker $faker) {
8
+$factory->define(SystemDataFieldTypes::class, function(Faker $faker) {
9 9
     return [
10 10
         'name'   => $faker->words(3, true),
11 11
         'hidden' => 0
Please login to merge, or discard this patch.
database/factories/NotificationsFactory.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\Model;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(Illuminate\Notifications\DatabaseNotification::class, function (Faker $faker) {
8
+$factory->define(Illuminate\Notifications\DatabaseNotification::class, function(Faker $faker) {
9 9
     return [
10 10
         //
11 11
         'id' => $faker->uuid,
Please login to merge, or discard this patch.