Passed
Push — master ( b79f84...774908 )
by Nasrul Hazim
21:29 queued 11:58
created
stubs/database/factories/EmailFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Faker\Generator as Faker;
4 4
 
5
-$factory->define(\CleaniqueCoders\Profile\Models\Email::class, function (Faker $faker) {
5
+$factory->define(\CleaniqueCoders\Profile\Models\Email::class, function(Faker $faker) {
6 6
     return [
7 7
         'email' => $faker->companyEmail,
8 8
     ];
Please login to merge, or discard this patch.
stubs/database/migrations/2017_12_23_000009_create_phone_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::create('phone_types', function (Blueprint $table) {
14
+        Schema::create('phone_types', function(Blueprint $table) {
15 15
             $table->increments('id');
16 16
             $table->label();
17 17
             $table->name();
Please login to merge, or discard this patch.
stubs/database/migrations/2017_12_23_020225_create_addresses_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::create('addresses', function (Blueprint $table) {
14
+        Schema::create('addresses', function(Blueprint $table) {
15 15
             $table->increments('id');
16 16
             $table->hashslug();
17 17
             $table->nullableBelongsTo('countries');
Please login to merge, or discard this patch.
stubs/database/migrations/2017_12_23_022510_create_emails_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::create('emails', function (Blueprint $table) {
14
+        Schema::create('emails', function(Blueprint $table) {
15 15
             $table->increments('id');
16 16
             $table->hashslug();
17 17
             $table->unsignedInteger('emailable_id');
Please login to merge, or discard this patch.
stubs/database/migrations/2018_02_06_175610_create_websites_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::create('websites', function (Blueprint $table) {
14
+        Schema::create('websites', function(Blueprint $table) {
15 15
             $table->increments('id');
16 16
             $table->hashslug();
17 17
             $table->unsignedInteger('websiteable_id');
Please login to merge, or discard this patch.
stubs/database/migrations/2017_12_23_000005_create_countries_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::create('countries', function (Blueprint $table) {
14
+        Schema::create('countries', function(Blueprint $table) {
15 15
             $table->increments('id');
16 16
             $table->string('code');
17 17
             $table->label();
Please login to merge, or discard this patch.
stubs/database/migrations/2017_12_23_020240_create_phones_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::create('phones', function (Blueprint $table) {
14
+        Schema::create('phones', function(Blueprint $table) {
15 15
             $table->increments('id');
16 16
             $table->hashslug();
17 17
             $table->belongsTo('phone_types')->default(\CleaniqueCoders\Profile\Models\PhoneType::HOME);
Please login to merge, or discard this patch.
stubs/database/migrations/2018_08_15_235959_create_banks_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::create('banks', function (Blueprint $table) {
14
+        Schema::create('banks', function(Blueprint $table) {
15 15
             $table->increments('id');
16 16
             $table->string('name')->nullable();
17 17
             $table->code('swift_code');
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
             $table->standardTime();
20 20
         });
21 21
 
22
-        Schema::create('bank_accounts', function (Blueprint $table) {
22
+        Schema::create('bank_accounts', function(Blueprint $table) {
23 23
             $table->increments('id');
24 24
             $table->hashslug();
25 25
             $table->belongsTo('banks');
Please login to merge, or discard this patch.
stubs/database/factories/AddressFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Faker\Generator as Faker;
4 4
 
5
-$factory->define(\CleaniqueCoders\Profile\Models\Address::class, function (Faker $faker) {
5
+$factory->define(\CleaniqueCoders\Profile\Models\Address::class, function(Faker $faker) {
6 6
     return [
7 7
         'country_id' => $faker->randomElement(range(1, 200)),
8 8
         'primary' => $faker->streetName,
Please login to merge, or discard this patch.