Passed
Branch dev5 (1d6d9a)
by Ron
09:07
created
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.
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.
app/Notifications/NewTechTip.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         return [
60 60
             //
61 61
             'type'    => 'warning',
62
-            'message' => 'New Tech Tip Created - ' . $this->details->subject,
62
+            'message' => 'New Tech Tip Created - '.$this->details->subject,
63 63
             'link'    => url(route(
64 64
                 'tip.details',
65 65
                     [
Please login to merge, or discard this patch.
database/factories/TechTipFilesFactory.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 App\TechTipFiles;
6 6
 
7
-$factory->define(TechTipFiles::class, function () {
7
+$factory->define(TechTipFiles::class, function() {
8 8
     return [
9 9
         'tip_id'  => factory(App\TechTips::class)->create()->tip_id,
10 10
         'file_id' => factory(App\Files::class)->create()->file_id,
Please login to merge, or discard this patch.
database/factories/TechTipSystems.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 App\TechTipSystems;
6 6
 
7
-$factory->define(TechTipSystems::class, function () {
7
+$factory->define(TechTipSystems::class, function() {
8 8
     return [
9 9
         'tip_id' => factory(App\TechTips::class)->create()->tip_id,
10 10
         'sys_id' => factory(App\SystemTypes::class)->create()->sys_id,
Please login to merge, or discard this patch.
database/factories/TechTips.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\TechTips;
6 6
 use Faker\Generator as Faker;
7 7
 
8
-$factory->define(TechTips::class, function (Faker $faker) {
8
+$factory->define(TechTips::class, function(Faker $faker) {
9 9
     return [
10 10
         'user_id'     => factory(App\User::class)->create()->user_id,
11 11
         'public'      => 0,
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
         '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.