| 1 | <?php |
||
| 20 | trait StringContentTrait { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Content. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $content; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the content. |
||
| 31 | * |
||
| 32 | * @return string Returns the content. |
||
| 33 | */ |
||
| 34 | public function getContent() { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Set the content. |
||
| 40 | * |
||
| 41 | * @param string $content The content. |
||
| 42 | */ |
||
| 43 | public function setContent($content) { |
||
| 47 | } |
||
| 48 |