GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

EmptyLocation   A
last analyzed

Complexity

Total Complexity 12

Size/Duplication

Total Lines 98
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 12
lcom 0
cbo 0
dl 0
loc 98
ccs 24
cts 24
cp 1
rs 10
c 0
b 0
f 0

12 Methods

Rating   Name   Duplication   Size   Complexity  
A full() 0 4 1
A city() 0 4 1
A state() 0 4 1
A stateName() 0 4 1
A country() 0 4 1
A countryIso3166() 0 4 1
A zip() 0 4 1
A magic() 0 4 1
A wmo() 0 4 1
A latitude() 0 4 1
A longitude() 0 4 1
A elevation() 0 4 1
1
<?php declare(strict_types=1);
2
3
namespace ApiClients\Client\WeatherUnderground\Resource;
4
5
use ApiClients\Foundation\Resource\EmptyResourceInterface;
6
7
abstract class EmptyLocation implements LocationInterface, EmptyResourceInterface
8
{
9
    /**
10
     * @return string
11
     */
12 2
    public function full() : string
13
    {
14 2
        return null;
15
    }
16
17
    /**
18
     * @return string
19
     */
20 2
    public function city() : string
21
    {
22 2
        return null;
23
    }
24
25
    /**
26
     * @return string
27
     */
28 2
    public function state() : string
29
    {
30 2
        return null;
31
    }
32
33
    /**
34
     * @return string
35
     */
36 2
    public function stateName() : string
37
    {
38 2
        return null;
39
    }
40
41
    /**
42
     * @return string
43
     */
44 2
    public function country() : string
45
    {
46 2
        return null;
47
    }
48
49
    /**
50
     * @return string
51
     */
52 2
    public function countryIso3166() : string
53
    {
54 2
        return null;
55
    }
56
57
    /**
58
     * @return string
59
     */
60 2
    public function zip() : string
61
    {
62 2
        return null;
63
    }
64
65
    /**
66
     * @return string
67
     */
68 2
    public function magic() : string
69
    {
70 2
        return null;
71
    }
72
73
    /**
74
     * @return string
75
     */
76 2
    public function wmo() : string
77
    {
78 2
        return null;
79
    }
80
81
    /**
82
     * @return string
83
     */
84 2
    public function latitude() : string
85
    {
86 2
        return null;
87
    }
88
89
    /**
90
     * @return string
91
     */
92 2
    public function longitude() : string
93
    {
94 2
        return null;
95
    }
96
97
    /**
98
     * @return string
99
     */
100 2
    public function elevation() : string
101
    {
102 2
        return null;
103
    }
104
}
105