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 ( b5dfb6...a568a9 )
by Mario
40:05
created

EzInfoCollection::getId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Netgen\InformationCollection\Doctrine\Entity;
6
7
use Doctrine\ORM\Mapping as ORM;
8
9
/**
10
 * EzInfoCollection.
11
 *
12
 * @ORM\Table(name="ezinfocollection", indexes={@ORM\Index(name="ezinfocollection_co_id_created", columns={"contentobject_id", "created"})})
13
 * @ORM\Entity(repositoryClass="Netgen\InformationCollection\Doctrine\Repository\EzInfoCollectionRepository")
14
 */
15
class EzInfoCollection
16
{
17
    /**
18
     * @var int
19
     *
20
     * @ORM\Column(name="id", type="integer")
21
     * @ORM\Id
22
     * @ORM\GeneratedValue(strategy="AUTO")
23
     */
24
    private $id;
25
26
    /**
27
     * @var int
28
     *
29
     * @ORM\Column(name="contentobject_id", type="integer", nullable=false, options={"default"=0})
30
     */
31
    private $contentObjectId;
32
33
    /**
34
     * @var int
35
     *
36
     * @ORM\Column(name="created", type="integer", nullable=false, options={"default"=0})
37
     */
38
    private $created;
39
40
    /**
41
     * @var int
42
     *
43
     * @ORM\Column(name="creator_id", type="integer", nullable=false, options={"default"=0})
44
     */
45
    private $creatorId;
46
47
    /**
48
     * @var int
49
     *
50
     * @ORM\Column(name="modified", type="integer", nullable=true, options={"default"=0})
51
     */
52
    private $modified;
53
54
    /**
55
     * @var string
56
     *
57
     * @ORM\Column(name="user_identifier", type="string", length=34, nullable=true)
58
     */
59
    private $userIdentifier;
60
61
    /**
62
     * @return int
63
     */
64
    public function getId()
65
    {
66
        return $this->id;
67
    }
68
69
    /**
70
     * @return int
71
     */
72
    public function getContentObjectId()
73
    {
74
        return $this->contentObjectId;
75
    }
76
77
    /**
78
     * @param int $id
79
     */
80
    public function setId($id)
81
    {
82
        $this->id = $id;
83
    }
84
85
    /**
86
     * @param int $contentObjectId
87
     */
88
    public function setContentObjectId($contentObjectId)
89
    {
90
        $this->contentObjectId = $contentObjectId;
91
    }
92
93
    /**
94
     * @param int $created
95
     */
96
    public function setCreated($created)
97
    {
98
        $this->created = $created;
99
    }
100
101
    /**
102
     * @param int $creatorId
103
     */
104
    public function setCreatorId($creatorId)
105
    {
106
        $this->creatorId = $creatorId;
107
    }
108
109
    /**
110
     * @param int $modified
111
     */
112
    public function setModified($modified)
113
    {
114
        $this->modified = $modified;
115
    }
116
117
    /**
118
     * @param string $userIdentifier
119
     */
120
    public function setUserIdentifier($userIdentifier)
121
    {
122
        $this->userIdentifier = $userIdentifier;
123
    }
124
125
    /**
126
     * @return int
127
     */
128
    public function getCreated()
129
    {
130
        return $this->created;
131
    }
132
133
    /**
134
     * @return int
135
     */
136
    public function getCreatorId()
137
    {
138
        return $this->creatorId;
139
    }
140
141
    /**
142
     * @return int
143
     */
144
    public function getModified()
145
    {
146
        return $this->modified;
147
    }
148
149
    /**
150
     * @return string
151
     */
152
    public function getUserIdentifier()
153
    {
154
        return $this->userIdentifier;
155
    }
156
}
157