38 lines
547 B
PHP
38 lines
547 B
PHP
<?php
|
|
|
|
namespace Shikiryu\LBCReposter;
|
|
|
|
class User
|
|
{
|
|
protected $storeId;
|
|
protected $userId;
|
|
|
|
/**
|
|
* User constructor.
|
|
* @param $storeId
|
|
* @param $userId
|
|
*/
|
|
public function __construct($storeId, $userId)
|
|
{
|
|
$this->storeId = $storeId;
|
|
$this->userId = $userId;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getStoreId()
|
|
{
|
|
return $this->storeId;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getUserId()
|
|
{
|
|
return $this->userId;
|
|
}
|
|
|
|
|
|
} |