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 ( 85cdf0...87050d )
by Mark
02:35
created

MenusController::version()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
rs 10
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Marky
5
 * Date: 23/01/2018
6
 * Time: 15:14
7
 */
8
9
namespace App\Plugins\Menus;
10
11
use App\Plugins\PluginHandler;
12
13
/**
14
 * Class ArticleController
15
 *
16
 * @package App\Plugins\Menus
17
 */
18
class MenusController extends PluginHandler
19
{
20
21
    /**
22
     * Return the icon associated with this plugin.
23
     */
24
    public function icon()
25
    {
26
        return 'fa-bars';
27
    }
28
29
    /**
30
     * Return the version for this plugin.
31
     */
32
    public function version()
33
    {
34
        return '2.6';
35
    }
36
}