Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | trait HasInternalRemarks |
||
10 | { |
||
11 | #[ORM\Column(type: 'text', length: 65535, options: ['default' => ''])] |
||
12 | private string $internalRemarks = ''; |
||
13 | |||
14 | /** |
||
15 | * Set internalRemarks. |
||
16 | */ |
||
17 | public function setInternalRemarks(string $internalRemarks): void |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Get internalRemarks. |
||
24 | */ |
||
25 | public function getInternalRemarks(): string |
||
30 |