Completed
Push — master ( 8c5cc3...01b1f4 )
by Francesco
02:33
created

ReportTicket::getCached()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Audiens\AppnexusClient\entity;
4
5
/**
6
 * Class ReportTicket
7
 */
8
class ReportTicket
9
{
10
11
    use HydratableTrait;
12
13
    /** @var  int */
14
    protected $report_id;
15
16
    /** @var  string */
17
    protected $cached;
18
19
    /**
20
     * @return int
21
     */
22
    public function getReportId()
23
    {
24
        return $this->report_id;
25
    }
26
27
    /**
28
     * @param int $report_id
29
     */
30
    public function setReportId($report_id)
31
    {
32
        $this->report_id = $report_id;
33
    }
34
35
    /**
36
     * @return string
37
     */
38
    public function getCached()
39
    {
40
        return $this->cached;
41
    }
42
43
    /**
44
     * @param string $cached
45
     */
46
    public function setCached($cached)
47
    {
48
        $this->cached = $cached;
49
    }
50
}
51