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