mirror of
https://github.com/exane/not-gwent-online
synced 2025-08-20 05:27:38 +00:00
change lobby screen
This commit is contained in:
@@ -27,4 +27,21 @@ class Kernel extends ConsoleKernel
|
||||
$schedule->command('inspire')
|
||||
->hourly();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $message
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function withMessage($message)
|
||||
{
|
||||
$this->message = $message;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function returnAccess($id)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
@@ -6,5 +6,21 @@ use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
abstract class Request extends FormRequest
|
||||
{
|
||||
//
|
||||
|
||||
/**
|
||||
* @var
|
||||
*/
|
||||
private $userID;
|
||||
|
||||
/**
|
||||
* @var
|
||||
*/
|
||||
private $accessPoint;
|
||||
|
||||
public function __construct($userID, $accessPoint)
|
||||
{
|
||||
|
||||
$this->userID = $userID;
|
||||
$this->accessPoint = $accessPoint;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user