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   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 12
rs 10
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
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