Total Complexity | 5 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class Reminder extends BaseEntity |
||
24 | { |
||
25 | use IdTrait; |
||
26 | use TimeTrait; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | * |
||
31 | * @ORM\Column(type="text") |
||
32 | */ |
||
33 | private $subject; |
||
34 | |||
35 | /** |
||
36 | * @var string |
||
37 | * |
||
38 | * @ORM\Column(type="text") |
||
39 | */ |
||
40 | private $body; |
||
41 | |||
42 | public function getSubject(): string |
||
43 | { |
||
44 | return $this->subject; |
||
45 | } |
||
46 | |||
47 | public function setSubject(string $subject): void |
||
50 | } |
||
51 | |||
52 | public function getBody(): ?string |
||
53 | { |
||
54 | return $this->body; |
||
55 | } |
||
56 | |||
57 | public function setBody(?string $body): void |
||
60 | } |
||
61 | |||
62 | public function __toString() |
||
65 | } |
||
66 | } |
||
67 |