mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-15 23:52:33 +01:00
43 lines
976 B
PHP
43 lines
976 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Events\Statement;
|
|
|
|
use App\Models\Client;
|
|
use App\Models\Company;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
/**
|
|
* Class StatementWasEmailed.
|
|
*/
|
|
class StatementWasEmailed
|
|
{
|
|
use Dispatchable;
|
|
use InteractsWithSockets;
|
|
use SerializesModels;
|
|
|
|
public function __construct(public Client $client, public Company $company, public string $end_date, public array $event_vars)
|
|
{
|
|
}
|
|
|
|
// /**
|
|
// * Get the channels the event should broadcast on.
|
|
// *
|
|
// * @return Channel|array
|
|
// */
|
|
public function broadcastOn()
|
|
{
|
|
return [];
|
|
}
|
|
}
|