Akaunting/app/Events/Common/ContactDeleting.php

21 lines
296 B
PHP

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