1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-18 23:42:25 +02:00
invoiceninja/app/Events/ClientWasDeleted.php
2019-01-30 22:25:37 +11:00

30 lines
433 B
PHP

<?php
namespace App\Events;
use App\Models\Client;
use Illuminate\Queue\SerializesModels;
/**
* Class ClientWasDeleted.
*/
class ClientWasDeleted extends Event
{
use SerializesModels;
/**
* @var Client
*/
public $client;
/**
* Create a new event instance.
*
* @param Client $client
*/
public function __construct(Client $client)
{
$this->client = $client;
}
}