mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-21 13:23:04 +01:00
12 lines
161 B
PHP
12 lines
161 B
PHP
<?php
|
|
|
|
namespace App\Interfaces;
|
|
|
|
use App\Models\Speedtest;
|
|
|
|
interface SpeedtestProvider
|
|
{
|
|
public function run(): Speedtest;
|
|
public function output();
|
|
}
|