| 1 | <?php |
||
| 15 | class KeyValue |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * $key. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | * @Expose |
||
| 22 | */ |
||
| 23 | private $key; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * $value. |
||
| 27 | * |
||
| 28 | * @var string |
||
| 29 | * @Expose |
||
| 30 | */ |
||
| 31 | private $value; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * setKey. |
||
| 35 | * |
||
| 36 | * @param string $key |
||
| 37 | * |
||
| 38 | * @return $this |
||
| 39 | */ |
||
| 40 | public function setKey($key) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * setValue. |
||
| 49 | * |
||
| 50 | * @param string $value |
||
| 51 | * |
||
| 52 | * @return $this |
||
| 53 | */ |
||
| 54 | public function setValue($value) |
||
| 60 | |||
| 61 | /** |
||
| 62 | * getValue. |
||
| 63 | * |
||
| 64 | * @return string |
||
| 65 | */ |
||
| 66 | public function getValue() |
||
| 70 | |||
| 71 | /** |
||
| 72 | * getKey. |
||
| 73 | * |
||
| 74 | * @return string |
||
| 75 | */ |
||
| 76 | public function getKey() |
||
| 80 | } |
||
| 81 |