Completed
Push — master ( 0d3a0e...4c814f )
by Matthieu
02:58
created

Task::getClientId()   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 Syncer\Dto\InvoiceNinja;
4
5
/**
6
 * Class Task
7
 * @package Syncer\Dto\InvoiceNinja
8
 *
9
 * @author Matthieu Calie <matthieu@calie>
10
 */
11
class Task
12
{
13
    /**
14
     * @var string
15
     */
16
    private $description;
17
18
    /**
19
     * @var string
20
     */
21
    private $timeLog;
22
23
    /**
24
     * @var integer
25
     */
26
    private $clientId;
27
28
    /**
29
     * @return string
30
     */
31
    public function getDescription(): string
32
    {
33
        return $this->description;
34
    }
35
36
    /**
37
     * @param string $description
38
     */
39
    public function setDescription(string $description)
40
    {
41
        $this->description = $description;
42
    }
43
44
    /**
45
     * @return string
46
     */
47
    public function getTimeLog(): string
48
    {
49
        return $this->timeLog;
50
    }
51
52
    /**
53
     * @param string $timeLog
54
     */
55
    public function setTimeLog(string $timeLog)
56
    {
57
        $this->timeLog = $timeLog;
58
    }
59
60
    /**
61
     * @return int
62
     */
63
    public function getClientId(): int
64
    {
65
        return $this->clientId;
66
    }
67
68
    /**
69
     * @param int $clientId
70
     */
71
    public function setClientId(int $clientId)
72
    {
73
        $this->clientId = $clientId;
74
    }
75
}
76