| 1 | <?php |
||
| 21 | class FormMetadataObject implements TypeInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var array |
||
| 25 | */ |
||
| 26 | protected $data = []; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param string $key |
||
| 30 | * @param mixed $value |
||
| 31 | */ |
||
| 32 | public function set($key, $value) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param string $key |
||
| 39 | * @return mixed |
||
| 40 | */ |
||
| 41 | public function get($key) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return array |
||
| 50 | */ |
||
| 51 | public function getData() |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @return string |
||
| 58 | */ |
||
| 59 | public function __toString() |
||
| 63 | } |
||
| 64 |