1
0
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:
devfake
2015-07-03 11:36:59 +02:00
parent a6dbba198f
commit e0976d4ac0
9 changed files with 211 additions and 57 deletions

@@ -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;
}
}