akaunting/app/Events/Banking/AccountDeleted.php

21 lines
296 B
PHP
Raw Normal View History

2023-08-23 15:20:20 +03:00
<?php
namespace App\Events\Banking;
use App\Abstracts\Event;
class AccountDeleted extends Event
{
public $account;
/**
* Create a new event instance.
*
* @param $account
*/
public function __construct($account)
{
$this->account = $account;
}
}