akaunting/app/Events/Banking/AccountDeleted.php
Cüneyt Şentürk e66aea0567 typo
2023-08-23 15:20:20 +03:00

21 lines
296 B
PHP

<?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;
}
}