for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* WebHemi.
*
* PHP version 5.6
* @copyright 2012 - 2016 Gixx-web (http://www.gixx-web.com)
* @license https://opensource.org/licenses/MIT The MIT License (MIT)
* @link http://www.gixx-web.com
*/
namespace WebHemi\DataEntity\User;
use WebHemi\DataEntity\DataEntityInterface;
* Class UserMetaEntity.
class UserMetaEntity implements DataEntityInterface
{
/** @var string */
private $userMetaId;
private $userId;
private $metaKey;
private $metaData;
* @param mixed $userMetaId
* @return $this
public function setUserMetaId($userMetaId)
$this->userMetaId = $userMetaId;
return $this;
}
* @return string
public function getUserMetaId()
return $this->userMetaId;
* @param mixed $userId
public function setUserId($userId)
$this->userId = $userId;
public function getUserId()
return $this->userId;
* @param string $metaKey
public function setMetaKey($metaKey)
$this->metaKey = $metaKey;
public function getMetaKey()
return $this->metaKey;
* @param mixed $metaData
public function setMetaData($metaData)
$this->metaData = $metaData;
public function getMetaData()
return $this->metaData;