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 — development ( 7d5c92...5a02f8 )
by José
04:48
created

HomeController   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 22
rs 10
1
<?php
2
3
namespace DoeSangue\Http\Controllers;
4
5
class HomeController extends Controller
0 ignored issues
show
Bug introduced by
Possible parse error: class missing opening or closing brace
Loading history...
6
{
7
    /**
8
     * Create a new controller instance.
9
     *
10
     * @return void
11
     */
12
public function __construct()
0 ignored issues
show
Coding Style introduced by
Function name "__construct" is invalid; only PHP magic methods should be prefixed with a double underscore
Loading history...
13
    {
14
<<<<<<< HEAD
0 ignored issues
show
Bug introduced by
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected T_SL
Loading history...
15
        //  $this->middleware('auth');
16
||||||| merged common ancestors
17
        $this->middleware('auth');
18
=======
19
        //  $this->middleware('auth');
20
21
>>>>>>> 4c37c57
22
    }
23
24
    /**
25
     * Show the application dashboard.
26
     *
27
     * @return \Illuminate\Http\Response
28
     */
29
    public function index()
30
    {
31
        return view('home');
32
    }
33
}
34