1
0
mirror of https://github.com/exane/not-gwent-online synced 2026-06-26 21:36:12 +03: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
+17 -1
View File
@@ -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;
}
}