Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class Semester extends BaseEntity |
||
18 | { |
||
19 | use IdTrait; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | * |
||
24 | * @ORM\Column(type="text") |
||
25 | */ |
||
26 | private $name; |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getName(): string |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @param string $name |
||
38 | */ |
||
39 | public function setName(string $name): void |
||
44 |