akaunting/app/Events/Auth/UserDeleting.php

21 lines
276 B
PHP
Raw Permalink Normal View History

2022-06-01 10:15:55 +03:00
<?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;
}
}