mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 07:10:10 +00:00
2c618e2d4e
* added public dashboard middleware * fixed lint issues
21 lines
405 B
PHP
21 lines
405 B
PHP
<?php
|
|
|
|
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;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(
|
|
public Result $result,
|
|
) {}
|
|
}
|