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 ( 5ac723...c719eb )
by Stan
07:02
created

Chat::getId()   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
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Teebot\Api\Entity;
4
5
class Chat extends AbstractEntity
6
{
7
    const ENTITY_TYPE = 'Chat';
8
9
    protected $id;
10
11
    protected $type;
12
13
    protected $title;
14
15
    protected $username;
16
17
    protected $first_name;
18
19
    protected $last_name;
20
21
    /**
22
     * @return mixed
23
     */
24
    public function getId()
25
    {
26
        return $this->id;
27
    }
28
29
    /**
30
     * @return mixed
31
     */
32
    public function getType()
33
    {
34
        return $this->type;
35
    }
36
37
    /**
38
     * @return mixed
39
     */
40
    public function getTitle()
41
    {
42
        return $this->title;
43
    }
44
45
    /**
46
     * @return mixed
47
     */
48
    public function getUsername()
49
    {
50
        return $this->username;
51
    }
52
53
    /**
54
     * @return mixed
55
     */
56
    public function getFirstName()
57
    {
58
        return $this->first_name;
59
    }
60
61
    /**
62
     * @return mixed
63
     */
64
    public function getLastName()
65
    {
66
        return $this->last_name;
67
    }
68
}