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

Contact::email()   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
namespace App\Classes\Library\PageLoader\Coordinators;
4
5
/**
6
 * Class Contact.
7
 */
8
class Contact
9
{
10
    /**
11
     * @return mixed
12
     */
13
    public function address()
14
    {
15
        return settings()->getValue('address');
16
    }
17
18
    /**
19
     * @return mixed
20
     */
21
    public function phone()
22
    {
23
        return settings()->getValue('phone_number');
24
    }
25
26
    /**
27
     * @return mixed
28
     */
29
    public function fax()
30
    {
31
        return settings()->getValue('fax_number');
32
    }
33
34
    /**
35
     * @return mixed
36
     */
37
    public function email()
38
    {
39
        return settings()->getValue('email_address');
40
    }
41
}
42