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

NewslettersController::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\Newsletters;
10
11
use App\Plugins\PluginHandler;
12
use App\Classes\Interfaces\Installable;
13
14
/**
15
 * Class NewsletterController.
16
 */
17
class NewslettersController extends PluginHandler implements Installable
18
{
19
    /**
20
     * Return the icon associated with this plugin.
21
     */
22
    public function icon()
23
    {
24
        return 'fa-book';
25
    }
26
27
    /**
28
     * Return the version for this plugin.
29
     */
30
    public function version()
31
    {
32
        return '1.0';
33
    }
34
35
    /**
36
     * The steps required for this plugin product to fully
37
     * integrate into the webservice.
38
     *
39
     * @return bool
40
     */
41
    public function install()
42
    {
43
        // TODO: Implement install() method.
44
    }
45
46
    /**
47
     * The steps required for this plugin product to fully
48
     * remove itself from the webservice.
49
     *
50
     * @return bool
51
     */
52
    public function uninstall()
53
    {
54
        // TODO: Implement uninstall() method.
55
    }
56
}
57