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

ReportTicket   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 43
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 4
c 1
b 1
f 0
lcom 0
cbo 1
dl 0
loc 43
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getReportId() 0 4 1
A setReportId() 0 4 1
A getCached() 0 4 1
A setCached() 0 4 1
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