Akaunting/app/Events/Banking/AccountDeleting.php

20 lines
315 B
PHP

<?php
namespace App\Events\Banking;
use App\Abstracts\Event;
class AccountDeleting extends Event
{
public $account;
/**
* Create a new event instance.
*
* @param $account
*/
public function __construct($account)
{
$this->account = $account;
}
}