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   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 34
rs 10
c 0
b 0
f 0
wmc 4
lcom 0
cbo 1

4 Methods

Rating   Name   Duplication   Size   Complexity  
A address() 0 4 1
A phone() 0 4 1
A fax() 0 4 1
A email() 0 4 1
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