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.
Completed
Push — master ( 430f59...c8c9fd )
by Cees-Jan
08:41 queued 04:26
created

EmptyCommit::sha()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
ccs 2
cts 2
cp 1
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php declare(strict_types=1);
2
3
namespace ApiClients\Client\Github\Resource\Repository;
4
5
use ApiClients\Client\Github\Resource\Git\CommitInterface as GitCommitInterface;
6
use ApiClients\Client\Github\Resource\TreeInterface;
7
use ApiClients\Client\Github\Resource\UserInterface;
8
use ApiClients\Foundation\Resource\EmptyResourceInterface;
9
10
abstract class EmptyCommit implements CommitInterface, EmptyResourceInterface
11
{
12
    /**
13
     * @return string
14
     */
15 2
    public function url() : string
16
    {
17 2
        return null;
18
    }
19
20
    /**
21
     * @return string
22
     */
23 2
    public function sha() : string
24
    {
25 2
        return null;
26
    }
27
28
    /**
29
     * @return string
30
     */
31 2
    public function htmlUrl() : string
32
    {
33 2
        return null;
34
    }
35
36
    /**
37
     * @return GitCommitInterface
38
     */
39 2
    public function commit() : GitCommitInterface
40
    {
41 2
        return null;
42
    }
43
44
    /**
45
     * @return UserInterface
46
     */
47 2
    public function author() : UserInterface
48
    {
49 2
        return null;
50
    }
51
52
    /**
53
     * @return UserInterface
54
     */
55 2
    public function comitter() : UserInterface
56
    {
57 2
        return null;
58
    }
59
60
    /**
61
     * @return TreeInterface
62
     */
63 2
    public function parents() : TreeInterface
64
    {
65 2
        return null;
66
    }
67
}
68