chore(refactor): refactor events

This commit is contained in:
2023-07-01 22:36:58 +01:00
parent a99689006b
commit 498534e9c0
4 changed files with 12 additions and 12 deletions

View File

@@ -30,7 +30,7 @@ class ApplicationApprovedEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $application;
public Application $application;
/**
* Create a new event instance.

View File

@@ -30,7 +30,7 @@ class ApplicationDeniedEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $application;
public Application $application;
/**
* Create a new event instance.

View File

@@ -31,9 +31,9 @@ class UserBannedEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $user;
public User $user;
public $ban;
public Ban $ban;
/**
* Create a new event instance.