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 Failed
Pull Request — fix-uploaders (#5518)
by Cristian
26:36 queued 12:28
created

  A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
cc 1
eloc 4
nc 1
nop 0
dl 0
loc 6
rs 10
c 2
b 0
f 1
1
<?php
2
3
use Illuminate\Database\Migrations\Migration;
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Support\Facades\Schema;
6
7
return new class() extends Migration
8
{
9
    /**
10
     * Run the migrations.
11
     */
12
    public function up(): void
13
    {
14
        Schema::create('uploaders', function (Blueprint $table) {
15
            $table->increments('id');
16
            $table->string('upload')->nullable();
17
            $table->text('upload_multiple')->nullable();
18
        });
19
    }
20
21
    /**
22
     * Reverse the migrations.
23
     */
24
    public function down(): void
25
    {
26
        Schema::dropIfExists('uploaders');
27
    }
28
};
29