Completed
Push — master ( cecf3a...936e1d )
by
unknown
22:35
created

CorporateTubeMetaData::setUploaderUserId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace MovingImage\Client\VMPro\Entity;
6
7
use DateTime;
8
use JMS\Serializer\Annotation\SerializedName;
9
use JMS\Serializer\Annotation\Type;
10
11
class CorporateTubeMetaData
12
{
13
    /**
14
     * @Type("DateTime")
15
     *
16
     * @var DateTime
17
     */
18
    private $uploadDate;
19
20
    /**
21
     * @Type("string")
22
     * @SerializedName("uploaderUserId")
23
     *
24
     * @var string
25
     */
26
    private $uploaderUserId;
27
28
    /**
29
     * @Type("string")
30
     * @SerializedName("inChargeUserId")
31
     *
32
     * @var string
33
     */
34
    private $inChargeUserId;
35
36
    public function getUploadDate(): DateTime
37
    {
38
        return $this->uploadDate;
39
    }
40
41
    public function setUploadDate(DateTime $uploadDate): self
42
    {
43
        $this->uploadDate = $uploadDate;
44
45
        return $this;
46
    }
47
48
    public function getUploaderUserId(): string
49
    {
50
        return $this->uploaderUserId;
51
    }
52
53
    public function setUploaderUserId(string $uploaderUserId): self
54
    {
55
        $this->uploaderUserId = $uploaderUserId;
56
57
        return $this;
58
    }
59
60
    public function getInChargeUserId(): string
61
    {
62
        return $this->inChargeUserId;
63
    }
64
65
    public function setInChargeUserId(string $inChargeUserId): self
66
    {
67
        $this->inChargeUserId = $inChargeUserId;
68
69
        return $this;
70
    }
71
}
72