🚧 Démarre le développement suite au passage à React
This commit is contained in:
38
library/User.php
Normal file
38
library/User.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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;
|
||||
}
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user