|
- <?php
-
- namespace App\Events\SMS;
-
- use App\Models\SMSSendOrder;
- use Illuminate\Broadcasting\InteractsWithSockets;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
-
- /**
- * 送信状態の確定イベント
- */
- class ConfirmEvent
- {
- use Dispatchable, InteractsWithSockets, SerializesModels;
-
- /**
- * Create a new event instance.
- *
- * @return void
- */
- public function __construct(public SMSSendOrder $order)
- {
- }
- }
|