| 1 | <?php |
||
| 19 | class UserMetaEntity implements DataEntityInterface |
||
| 20 | { |
||
| 21 | /** @var string */ |
||
| 22 | private $userMetaId; |
||
| 23 | /** @var string */ |
||
| 24 | private $userId; |
||
| 25 | /** @var string */ |
||
| 26 | private $metaKey; |
||
| 27 | /** @var string */ |
||
| 28 | private $metaData; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param mixed $userMetaId |
||
| 32 | * |
||
| 33 | * @return $this |
||
| 34 | */ |
||
| 35 | 4 | public function setUserMetaId($userMetaId) |
|
| 41 | |||
| 42 | /** |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | 2 | public function getUserMetaId() |
|
| 49 | |||
| 50 | /** |
||
| 51 | * @param mixed $userId |
||
| 52 | * |
||
| 53 | * @return $this |
||
| 54 | */ |
||
| 55 | 4 | public function setUserId($userId) |
|
| 61 | |||
| 62 | /** |
||
| 63 | * @return string |
||
| 64 | */ |
||
| 65 | 2 | public function getUserId() |
|
| 69 | |||
| 70 | /** |
||
| 71 | * @param string $metaKey |
||
| 72 | * |
||
| 73 | * @return $this |
||
| 74 | */ |
||
| 75 | 2 | public function setMetaKey($metaKey) |
|
| 81 | |||
| 82 | /** |
||
| 83 | * @return string |
||
| 84 | */ |
||
| 85 | 1 | public function getMetaKey() |
|
| 89 | |||
| 90 | /** |
||
| 91 | * @param mixed $metaData |
||
| 92 | * |
||
| 93 | * @return $this |
||
| 94 | */ |
||
| 95 | 2 | public function setMetaData($metaData) |
|
| 101 | |||
| 102 | /** |
||
| 103 | * @return string |
||
| 104 | */ |
||
| 105 | 1 | public function getMetaData() |
|
| 109 | } |
||
| 110 |