1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00
invoiceninja/app/Events/ClientWasCreated.php

30 lines
433 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Events;
2015-10-28 20:22:07 +01:00
use App\Models\Client;
2015-10-28 20:22:07 +01:00
use Illuminate\Queue\SerializesModels;
/**
2017-01-30 20:40:43 +01:00
* Class ClientWasCreated.
*/
2015-10-28 20:22:07 +01:00
class ClientWasCreated extends Event
{
use SerializesModels;
/**
* @var Client
*/
2015-10-28 20:22:07 +01:00
public $client;
/**
* Create a new event instance.
*
* @param Client $client
2015-10-28 20:22:07 +01:00
*/
public function __construct(Client $client)
2015-10-28 20:22:07 +01:00
{
$this->client = $client;
}
}