Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Rota extends BaseEntity |
||
14 | { |
||
15 | /** |
||
16 | * @ORM\Column(type="string", name="nome") |
||
17 | * BdAnnotations\ToArray |
||
18 | * BdAnnotations\RulePersist |
||
19 | */ |
||
20 | protected $nome; |
||
21 | |||
22 | /** |
||
23 | * @ORM\Column(type="string", name="alias", unique=true) |
||
24 | * BdAnnotations\ToArray |
||
25 | * BdAnnotations\RulePersist |
||
26 | */ |
||
27 | protected $alias; |
||
28 | |||
29 | public function getNome() |
||
30 | { |
||
31 | return $this->nome; |
||
32 | } |
||
33 | |||
34 | public function setNome($nome) |
||
35 | { |
||
36 | $this->nome = $nome; |
||
37 | |||
38 | return $this; |
||
39 | } |
||
40 | |||
41 | public function getAlias() |
||
44 | } |
||
45 | |||
46 | public function setAlias($alias) |
||
53 |