mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 04:20:08 +00:00
116f83a367
Co-authored-by: Alex Justesen <alexjustesen@users.noreply.github.com>
22 lines
450 B
PHP
22 lines
450 B
PHP
<?php
|
|
|
|
return [
|
|
// Status enum values
|
|
'status' => [
|
|
'benchmarking' => 'Benchmarking',
|
|
'checking' => 'Checking',
|
|
'completed' => 'Completed',
|
|
'failed' => 'Failed',
|
|
'running' => 'Running',
|
|
'started' => 'Started',
|
|
'skipped' => 'Skipped',
|
|
'waiting' => 'Waiting',
|
|
],
|
|
|
|
// Service enum values
|
|
'service' => [
|
|
'faker' => 'Faker',
|
|
'ookla' => 'Ookla',
|
|
],
|
|
];
|