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

Passed
Pull Request — fix-uploaders (#5518)
by Pedro
41:44 queued 27:03
created

  A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 0 Features 2
Metric Value
cc 1
eloc 7
c 3
b 0
f 2
nc 1
nop 0
dl 0
loc 9
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
    /**
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->json('upload_multiple')->nullable();
18
            $table->json('dropzone')->nullable();
19
            $table->json('easymde')->nullable();
20
            $table->json('repeatable')->nullable();
21
        });
22
    }
23
24
    /**
25
     * Reverse the migrations.
26
     */
27
    public function down(): void
28
    {
29
        Schema::dropIfExists('uploaders');
30
    }
31
};
32