mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 12:12:48 +01:00
30 lines
435 B
PHP
30 lines
435 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Client;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class ClientWasRestored.
|
|
*/
|
|
class ClientWasRestored extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* @var Client
|
|
*/
|
|
public $client;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Client $client
|
|
*/
|
|
public function __construct(Client $client)
|
|
{
|
|
$this->client = $client;
|
|
}
|
|
}
|