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::copyright()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
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