mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 06:20:09 +00:00
fd7a034235
Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com>
20 lines
344 B
PHP
20 lines
344 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Result;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class SpeedtestBenchmarkUnhealthy
|
|
{
|
|
use Dispatchable, SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(
|
|
public Result $result,
|
|
) {}
|
|
}
|