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
Push — add-uploaders-tests ( 122cde )
by Pedro
25:18
created

  A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 3
c 1
b 0
f 1
nc 1
nop 0
dl 0
loc 5
rs 10
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
     * Run the migrations.
10
     */
11
    public function up(): void
12
    {
13
        Schema::create('uploaders', function (Blueprint $table) {
14
            $table->string('upload')->nullable();
15
            $table->text('upload_multiple')->nullable();
16
        });
17
    }
18
19
    /**
20
     * Reverse the migrations.
21
     */
22
    public function down(): void
23
    {
24
        Schema::dropIfExists('uploaders');
25
    }
26
};
27