@@ -27,7 +27,6 @@ |
||
| 27 | 27 | /** |
| 28 | 28 | * Create a new event instance. |
| 29 | 29 | * |
| 30 | - * @param SendHttpApiParams $params |
|
| 31 | 30 | */ |
| 32 | 31 | public function __construct(string $mobile, string $message, string $senderId) |
| 33 | 32 | { |
@@ -3,12 +3,10 @@ |
||
| 3 | 3 | namespace LBHurtado\EngageSpark\Events; |
| 4 | 4 | |
| 5 | 5 | use Illuminate\Broadcasting\Channel; |
| 6 | -use Illuminate\Queue\SerializesModels; |
|
| 6 | +use Illuminate\Broadcasting\InteractsWithSockets; |
|
| 7 | 7 | use Illuminate\Broadcasting\PrivateChannel; |
| 8 | -use Illuminate\Broadcasting\PresenceChannel; |
|
| 9 | 8 | use Illuminate\Foundation\Events\Dispatchable; |
| 10 | -use Illuminate\Broadcasting\InteractsWithSockets; |
|
| 11 | -use Illuminate\Contracts\Broadcasting\ShouldBroadcast; |
|
| 9 | +use Illuminate\Queue\SerializesModels; |
|
| 12 | 10 | |
| 13 | 11 | |
| 14 | 12 | class MessageSent |