akaunting/app/Events/Auth/UserDeleting.php
2022-06-01 10:15:55 +03:00

21 lines
276 B
PHP

<?php
namespace App\Events\Auth;
use App\Abstracts\Event;
class UserDeleting extends Event
{
public $user;
/**
* Create a new event instance.
*
* @param $user
*/
public function __construct($user)
{
$this->user = $user;
}
}