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 ( 2199a0...d3aed5 )
by Cees-Jan
09:41
created

Meta::git()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php declare(strict_types=1);
2
3
namespace ApiClients\Client\Github\Resource;
4
5
use ApiClients\Foundation\Hydrator\Annotations\EmptyResource;
6
use ApiClients\Foundation\Resource\AbstractResource;
7
8
/**
9
 * @EmptyResource("EmptyMeta")
10
 */
11
abstract class Meta extends AbstractResource implements MetaInterface
12
{
13
    /**
14
     * @var bool
15
     */
16
    protected $verifiable_password_authentication;
17
18
    /**
19
     * @var string
20
     */
21
    protected $github_services_sha;
22
23
    /**
24
     * @var array
25
     */
26
    protected $hooks;
27
28
    /**
29
     * @var array
30
     */
31
    protected $git;
32
33
    /**
34
     * @var array
35
     */
36
    protected $pages;
37
38
    /**
39
     * @var array
40
     */
41
    protected $importer;
42
43
    /**
44
     * @return bool
45
     */
46
    public function verifiablePasswordAuthentication() : bool
47
    {
48
        return $this->verifiable_password_authentication;
49
    }
50
51
    /**
52
     * @return string
53
     */
54
    public function githubServicesSha() : string
55
    {
56
        return $this->github_services_sha;
57
    }
58
59
    /**
60
     * @return array
61
     */
62
    public function hooks() : array
63
    {
64
        return $this->hooks;
65
    }
66
67
    /**
68
     * @return array
69
     */
70
    public function git() : array
71
    {
72
        return $this->git;
73
    }
74
75
    /**
76
     * @return array
77
     */
78
    public function pages() : array
79
    {
80
        return $this->pages;
81
    }
82
83
    /**
84
     * @return array
85
     */
86
    public function importer() : array
87
    {
88
        return $this->importer;
89
    }
90
}
91