| 1 | <?php |
||
| 12 | class DummyHex |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * The "fake" key |
||
| 16 | * @SWG\Property() |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $id; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The UUID |
||
| 23 | * @SWG\Property() |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | protected $uuid; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Some field property |
||
| 30 | * @SWG\Property() |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | protected $field; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return mixed |
||
| 37 | */ |
||
| 38 | public function getId() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param mixed $value |
||
| 45 | */ |
||
| 46 | public function setId($value) |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function getUuid() |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @param string $uuid |
||
| 61 | */ |
||
| 62 | public function setUuid($uuid) |
||
| 66 | |||
| 67 | |||
| 68 | /** |
||
| 69 | * @return mixed |
||
| 70 | */ |
||
| 71 | public function getField() |
||
| 75 | |||
| 76 | /** |
||
| 77 | * @param mixed $field |
||
| 78 | */ |
||
| 79 | public function setField($field) |
||
| 83 | } |
||
| 84 |