| 1 | <?php |
||
| 13 | trait LongDescriptionPart { |
||
| 14 | |||
| 15 | /** @var string */ |
||
| 16 | private $longDescription; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Returns the long description |
||
| 20 | * |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | 22 | public function getLongDescription(): ?string { |
|
| 26 | |||
| 27 | /** |
||
| 28 | * Sets the long description |
||
| 29 | * |
||
| 30 | * @param string $longDescription |
||
| 31 | * @return $this |
||
| 32 | */ |
||
| 33 | 12 | public function setLongDescription(string $longDescription) { |
|
| 37 | } |
||
| 38 |