| 1 | <?php |
||
| 9 | class Deg |
||
| 10 | { |
||
| 11 | /** @var array */ |
||
| 12 | protected $dataElements = array(); |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Adds a data element to the data element group. |
||
| 16 | * |
||
| 17 | * @param mixed $value |
||
| 18 | */ |
||
| 19 | 13 | public function addDataElement($value) |
|
| 23 | |||
| 24 | 13 | public function toString() |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | 13 | public function __toString() |
|
| 36 | } |
||
| 37 |