Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class EntityVarMachineId implements EntityInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $name; |
||
23 | |||
24 | /** |
||
25 | * @return string |
||
26 | */ |
||
27 | 1 | public function getName() |
|
28 | { |
||
29 | 1 | return $this->name; |
|
30 | } |
||
31 | |||
32 | /** |
||
33 | * @param string $name |
||
34 | */ |
||
35 | public function setName($name) |
||
38 | } |
||
39 | } |
||
40 |