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