Completed
Push — master ( 709db1...ea2eeb )
by luca
21:44
created

MemberDataSharingSegment   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getId() 0 4 1
A setId() 0 4 1
A getName() 0 4 1
A setName() 0 4 1
1
<?php
2
3
namespace Audiens\AppnexusClient\entity;
4
5
/**
6
 * Class MemberDataSharingSegment
7
 */
8
class MemberDataSharingSegment
9
{
10
    use HydratableTrait;
11
12
    /** @var string */
13
    protected $id;
14
15
    /** @var string */
16
    protected $name;
17
18
    /**
19
     * @return mixed
20
     */
21
    public function getId()
22
    {
23
        return $this->id;
24
    }
25
26
    /**
27
     * @param string $id
28
     */
29
    public function setId($id)
30
    {
31
        $this->id = $id;
32
    }
33
34
    /**
35
     * @return mixed
36
     */
37
    public function getName()
38
    {
39
        return $this->name;
40
    }
41
42
    /**
43
     * @param mixed $name
44
     */
45
    public function setName($name)
46
    {
47
        $this->name = $name;
48
    }
49
}
50