From e1f481f5b816541f9c6c44c937ec3e21b3966d38 Mon Sep 17 00:00:00 2001 From: Alex Justesen Date: Mon, 19 May 2025 14:44:36 -0400 Subject: [PATCH] Removed unused InteractsWithSockets trait from event classes --- app/Events/SpeedtestBenchmarkFailed.php | 3 +-- app/Events/SpeedtestBenchmarkPassed.php | 3 +-- app/Events/SpeedtestBenchmarking.php | 3 +-- app/Events/SpeedtestChecking.php | 3 +-- app/Events/SpeedtestCompleted.php | 3 +-- app/Events/SpeedtestFailed.php | 3 +-- app/Events/SpeedtestRunning.php | 3 +-- app/Events/SpeedtestSkipped.php | 3 +-- app/Events/SpeedtestStarted.php | 3 +-- app/Events/SpeedtestWaiting.php | 3 +-- 10 files changed, 10 insertions(+), 20 deletions(-) diff --git a/app/Events/SpeedtestBenchmarkFailed.php b/app/Events/SpeedtestBenchmarkFailed.php index 52a80796d..b00175b13 100644 --- a/app/Events/SpeedtestBenchmarkFailed.php +++ b/app/Events/SpeedtestBenchmarkFailed.php @@ -3,13 +3,12 @@ namespace App\Events; use App\Models\Result; -use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class SpeedtestBenchmarkFailed { - use Dispatchable, InteractsWithSockets, SerializesModels; + use Dispatchable, SerializesModels; /** * Create a new event instance. diff --git a/app/Events/SpeedtestBenchmarkPassed.php b/app/Events/SpeedtestBenchmarkPassed.php index 4f006cb71..ab8e9ae82 100644 --- a/app/Events/SpeedtestBenchmarkPassed.php +++ b/app/Events/SpeedtestBenchmarkPassed.php @@ -3,13 +3,12 @@ namespace App\Events; use App\Models\Result; -use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class SpeedtestBenchmarkPassed { - use Dispatchable, InteractsWithSockets, SerializesModels; + use Dispatchable, SerializesModels; /** * Create a new event instance. diff --git a/app/Events/SpeedtestBenchmarking.php b/app/Events/SpeedtestBenchmarking.php index a20ecb377..2fa0de2f9 100644 --- a/app/Events/SpeedtestBenchmarking.php +++ b/app/Events/SpeedtestBenchmarking.php @@ -3,13 +3,12 @@ namespace App\Events; use App\Models\Result; -use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class SpeedtestBenchmarking { - use Dispatchable, InteractsWithSockets, SerializesModels; + use Dispatchable, SerializesModels; /** * Create a new event instance. diff --git a/app/Events/SpeedtestChecking.php b/app/Events/SpeedtestChecking.php index 894bba95f..36203045b 100644 --- a/app/Events/SpeedtestChecking.php +++ b/app/Events/SpeedtestChecking.php @@ -3,13 +3,12 @@ namespace App\Events; use App\Models\Result; -use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class SpeedtestChecking { - use Dispatchable, InteractsWithSockets, SerializesModels; + use Dispatchable, SerializesModels; /** * Create a new event instance. diff --git a/app/Events/SpeedtestCompleted.php b/app/Events/SpeedtestCompleted.php index 90ea3e2df..94fe15eec 100644 --- a/app/Events/SpeedtestCompleted.php +++ b/app/Events/SpeedtestCompleted.php @@ -3,13 +3,12 @@ namespace App\Events; use App\Models\Result; -use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class SpeedtestCompleted { - use Dispatchable, InteractsWithSockets, SerializesModels; + use Dispatchable, SerializesModels; /** * Create a new event instance. diff --git a/app/Events/SpeedtestFailed.php b/app/Events/SpeedtestFailed.php index c931555b2..c6f9b19f8 100644 --- a/app/Events/SpeedtestFailed.php +++ b/app/Events/SpeedtestFailed.php @@ -3,13 +3,12 @@ namespace App\Events; use App\Models\Result; -use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class SpeedtestFailed { - use Dispatchable, InteractsWithSockets, SerializesModels; + use Dispatchable, SerializesModels; /** * Create a new event instance. diff --git a/app/Events/SpeedtestRunning.php b/app/Events/SpeedtestRunning.php index 104852755..89adb778b 100644 --- a/app/Events/SpeedtestRunning.php +++ b/app/Events/SpeedtestRunning.php @@ -3,13 +3,12 @@ namespace App\Events; use App\Models\Result; -use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class SpeedtestRunning { - use Dispatchable, InteractsWithSockets, SerializesModels; + use Dispatchable, SerializesModels; /** * Create a new event instance. diff --git a/app/Events/SpeedtestSkipped.php b/app/Events/SpeedtestSkipped.php index 550efa380..b6bf7909e 100644 --- a/app/Events/SpeedtestSkipped.php +++ b/app/Events/SpeedtestSkipped.php @@ -3,13 +3,12 @@ namespace App\Events; use App\Models\Result; -use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class SpeedtestSkipped { - use Dispatchable, InteractsWithSockets, SerializesModels; + use Dispatchable, SerializesModels; /** * Create a new event instance. diff --git a/app/Events/SpeedtestStarted.php b/app/Events/SpeedtestStarted.php index d4bdf9913..ab9f797cb 100644 --- a/app/Events/SpeedtestStarted.php +++ b/app/Events/SpeedtestStarted.php @@ -3,13 +3,12 @@ namespace App\Events; use App\Models\Result; -use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class SpeedtestStarted { - use Dispatchable, InteractsWithSockets, SerializesModels; + use Dispatchable, SerializesModels; /** * Create a new event instance. diff --git a/app/Events/SpeedtestWaiting.php b/app/Events/SpeedtestWaiting.php index 3da212a30..b162f9bff 100644 --- a/app/Events/SpeedtestWaiting.php +++ b/app/Events/SpeedtestWaiting.php @@ -3,13 +3,12 @@ namespace App\Events; use App\Models\Result; -use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class SpeedtestWaiting { - use Dispatchable, InteractsWithSockets, SerializesModels; + use Dispatchable, SerializesModels; /** * Create a new event instance.