We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -28,7 +28,7 @@ |
||
28 | 28 | public function up() |
29 | 29 | { |
30 | 30 | $this->schema->create( |
31 | - 'banks', function (Blueprint $table) { |
|
31 | + 'banks', function(Blueprint $table) { |
|
32 | 32 | $table->uuid('id')->unique()->primary(); |
33 | 33 | $table->string('name'); |
34 | 34 | $table->string('email'); |
@@ -20,7 +20,7 @@ |
||
20 | 20 | DB::table('campaigns')->delete(); |
21 | 21 | |
22 | 22 | factory(User::class, 20)->create()->each( |
23 | - function ($u) { |
|
23 | + function($u) { |
|
24 | 24 | $u->campaigns()->save(factory(Campaign::class)->make()); |
25 | 25 | } |
26 | 26 | ); |
@@ -27,7 +27,7 @@ |
||
27 | 27 | 'description' => $this->faker->text(100), |
28 | 28 | 'expires' => \Carbon\Carbon::now()->endOfYear(), |
29 | 29 | 'image' => $this->faker->imageUrl, |
30 | - 'user_id' => function () { |
|
30 | + 'user_id' => function() { |
|
31 | 31 | return factory(User::class)->make()->id; |
32 | 32 | }, |
33 | 33 | 'slug' => $this->faker->slug |
@@ -28,7 +28,7 @@ |
||
28 | 28 | public function up() |
29 | 29 | { |
30 | 30 | $this->schema->create( |
31 | - 'comments', function (Blueprint $table) { |
|
31 | + 'comments', function(Blueprint $table) { |
|
32 | 32 | $table->uuid('id')->unique()->primary(); |
33 | 33 | $table->string('comment'); |
34 | 34 | $table->uuid('campaign_id'); |
@@ -28,7 +28,7 @@ |
||
28 | 28 | public function up() |
29 | 29 | { |
30 | 30 | $this->schema->create( |
31 | - 'campaigns', function (Blueprint $table) { |
|
31 | + 'campaigns', function(Blueprint $table) { |
|
32 | 32 | $table->uuid('id')->unique()->primary(); |
33 | 33 | $table->string('title'); |
34 | 34 | $table->text('description'); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | - namespace GiveBlood\Modules\Users\Database\Seeders; |
|
3 | + namespace GiveBlood\Modules\Users\Database\Seeders; |
|
4 | 4 | |
5 | 5 | use Illuminate\Database\Seeder; |
6 | 6 | use DB; |
@@ -28,7 +28,7 @@ |
||
28 | 28 | public function up() |
29 | 29 | { |
30 | 30 | $this->schema->create( |
31 | - 'countries', function (Blueprint $table) { |
|
31 | + 'countries', function(Blueprint $table) { |
|
32 | 32 | $table->increments('id'); |
33 | 33 | $table->string('country_name'); |
34 | 34 | $table->timestamps(); |
@@ -28,7 +28,7 @@ |
||
28 | 28 | public function up() |
29 | 29 | { |
30 | 30 | $this->schema->create( |
31 | - 'invites', function (Blueprint $table) { |
|
31 | + 'invites', function(Blueprint $table) { |
|
32 | 32 | $table->increments('id'); |
33 | 33 | $table->string('invite_code')->unique(); |
34 | 34 | $table->uuid('user_id'); |
@@ -28,7 +28,7 @@ |
||
28 | 28 | public function up() |
29 | 29 | { |
30 | 30 | $this->schema->create( |
31 | - 'users', function (Blueprint $table) { |
|
31 | + 'users', function(Blueprint $table) { |
|
32 | 32 | $table->uuid('id'); |
33 | 33 | $table->string('first_name'); |
34 | 34 | $table->string('last_name'); |