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