Passed
Push — feature/0.7.0 ( f8dc8d...75a66b )
by Ryuichi
42:58
created

Test1Entitiy::getId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
namespace WebStream\Test\Model\Entity;
3
4
class Test1Entitiy
5
{
6
    private $id;
7
    private $name;
8
9
    public function setId($id)
10
    {
11
        $this->id = $id;
12
    }
13
14
    public function getId()
15
    {
16
        return $this->id;
17
    }
18
19
    public function setName($name)
20
    {
21
        $this->name = $name;
22
    }
23
24
    public function getName()
25
    {
26
        return $this->name;
27
    }
28
}
29