Passed
Push — dev5 ( 6e89ff...3685b3 )
by Ron
05:58
created
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->unique()->text(15)
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
         //
11 11
         'name'   => $faker->words(),
Please login to merge, or discard this patch.
database/factories/CustomerSystemData.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\CustomerSystemData;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(CustomerSystemData::class, function (Faker $faker) {
8
+$factory->define(CustomerSystemData::class, function(Faker $faker) {
9 9
     return [
10 10
         //
11 11
         'cust_sys_id' => factory(App\CustomerSystems::class)->create()->cust_sys_id,
Please login to merge, or discard this patch.
app/Http/Controllers/Customers/CustomerSystemsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
 
109 109
         foreach($fields as $data)
110 110
         {
111
-            $fieldName = 'field_' . $data->field_id;
111
+            $fieldName = 'field_'.$data->field_id;
112 112
             if(isset($request->$fieldName))
113 113
             {
114 114
                 Log::debug($request->$fieldName);
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
         //
11 11
         'cust_id' => factory(App\Customers::class)->create(),
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
         //
11 11
         'cust_id'     => factory(App\Customers::class)->create()->cust_id,
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
         //
11 11
         'file_id' => factory(App\Files::class)->create()->file_id,
Please login to merge, or discard this patch.
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
         //
11 11
         'description' => $faker->unique()->name(),
Please login to merge, or discard this patch.
database/migrations/2018_05_30_113959_create_tech_tip_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function up()
16 16
     {
17
-        Schema::create('tech_tip_types', function (Blueprint $table) {
17
+        Schema::create('tech_tip_types', function(Blueprint $table) {
18 18
             $table->bigIncrements('tip_type_id');
19 19
             $table->text('description');
20 20
             $table->timestamps();
Please login to merge, or discard this patch.