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

Completed
Push — master ( 861d7d...2ad8d1 )
by Cristian
04:38
created

BaseTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 2
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php
2
3
namespace Backpack\CRUD\Tests;
4
5
use Orchestra\Testbench\TestCase;
6
7
abstract class BaseTest extends TestCase
8
{
9
    /**
10
     * Setup the test environment.
11
     *
12
     * @return void
13
     */
14
    protected function setUp()
15
    {
16
        parent::setUp();
17
    }
18
}
19