akaunting/app/Events/Auth/RoleDeleted.php

21 lines
275 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 RoleDeleted extends Event
{
public $role;
/**
* Create a new event instance.
*
* @param $role
*/
public function __construct($role)
{
$this->role = $role;
}
}