Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Test Setup Failed
Pull Request — development (#68)
by José
06:06
created
app/Modules/Bank/Database/Migrations/CreateBanksTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
app/Modules/Campaign/Database/Seeders/CampaignsSeeder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
         );
Please login to merge, or discard this patch.
app/Modules/Campaign/Database/Factories/CampaignFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
app/Modules/Campaign/Database/Migrations/CreateCommentsTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
app/Modules/Campaign/Database/Migrations/CreateCampaignsTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
app/Modules/Users/Database/Seeders/CountriesSeeder.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
app/Modules/Users/Database/Migrations/CreateCountriesTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
app/Modules/Users/Database/Migrations/CreateInvitesTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
app/Modules/Users/Database/Migrations/CreateUsersTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.