2017-02-18 01:23:27 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 04:43:01 +02:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-02-18 01:23:27 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Events\Subuser;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\Subuser;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
|
|
class Creating
|
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
2017-03-20 00:36:50 +01:00
|
|
|
/**
|
|
|
|
* The Eloquent model of the server.
|
|
|
|
*
|
|
|
|
* @var \Pterodactyl\Models\Subuser
|
|
|
|
*/
|
2017-02-18 01:23:27 +01:00
|
|
|
public $subuser;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*/
|
|
|
|
public function __construct(Subuser $subuser)
|
|
|
|
{
|
|
|
|
$this->subuser = $subuser;
|
|
|
|
}
|
|
|
|
}
|