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