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

MenusController::version()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
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
class MenusController extends PluginHandler
17
{
18
    /**
19
     * Return the icon associated with this plugin.
20
     */
21
    public function icon()
22
    {
23
        return 'fa-bars';
24
    }
25
26
    /**
27
     * Return the version for this plugin.
28
     */
29
    public function version()
30
    {
31
        return '2.6';
32
    }
33
}
34