Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | trait HasInternalRemarks |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | * |
||
12 | * @ORM\Column(type="text", length=65535) |
||
13 | */ |
||
14 | private $internalRemarks = ''; |
||
15 | |||
16 | /** |
||
17 | * Set internalRemarks |
||
18 | * |
||
19 | * @param string $internalRemarks |
||
20 | */ |
||
21 | public function setInternalRemarks(string $internalRemarks): void |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Get internalRemarks |
||
28 | * |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getInternalRemarks(): string |
||
36 |