2023-08-15 14:14:00 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Events\Account;
|
|
|
|
|
|
|
|
use App\Models\Company;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
2023-10-26 04:57:44 +02:00
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2023-08-15 14:14:00 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class StripeConnectFailure.
|
|
|
|
*/
|
|
|
|
class StripeConnectFailure
|
|
|
|
{
|
2024-01-14 05:05:00 +01:00
|
|
|
use Dispatchable;
|
|
|
|
use InteractsWithSockets;
|
|
|
|
use SerializesModels;
|
2023-08-15 14:14:00 +02:00
|
|
|
|
|
|
|
public function __construct(public Company $company, public string $db)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function broadcastOn()
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|