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
Branch master (114f68)
by Mark
08:50
created

RenameNewsToArticles   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 20
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A down() 0 3 1
A up() 0 3 1
1
<?php
2
3
use Illuminate\Database\Migrations\Migration;
4
5
class RenameNewsToArticles extends Migration
6
{
7
    /**
8
     * Run the migrations.
9
     *
10
     * @return void
11
     */
12
    public function up()
13
    {
14
        \Schema::rename('news', 'articles');
15
    }
16
17
    /**
18
     * Reverse the migrations.
19
     *
20
     * @return void
21
     */
22
    public function down()
23
    {
24
        \Schema::rename('articles', 'news');
25
    }
26
}
27