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 ( 70e47f...dda101 )
by Mark
07:55
created

Frame   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A name() 0 4 1
A copyright() 0 4 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Marky
5
 * Date: 31/12/2017
6
 * Time: 02:22.
7
 */
8
9
namespace App\Classes\Library\PageLoader\Coordinators;
10
11
use App\Classes\SettingsManager;
12
13
/**
14
 * Class Site.
15
 */
16
class Frame
17
{
18
    /**
19
     * @return mixed
20
     */
21
    public function name()
22
    {
23
        return settings()->getValue('website_name');
24
    }
25
26
    /**
27
     * @return mixed
28
     */
29
    public function copyright()
30
    {
31
        return settings()->getValue('website_copyright');
32
    }
33
}
34