Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
11 | trait HasRichTextDescription |
||
12 | { |
||
13 | #[ORM\Column(type: 'text', length: 65535, options: ['default' => ''])] |
||
14 | private string $description = ''; |
||
15 | |||
16 | /** |
||
17 | * Set description. |
||
18 | */ |
||
19 | public function setDescription(string $description): void |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * Get description. |
||
26 | */ |
||
27 | public function getDescription(): string |
||
32 |