13 lines
212 B
PHP
13 lines
212 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum WorkoutSource: string
|
|
{
|
|
case MANUAL = 'manual';
|
|
case STRAVA = 'strava';
|
|
case APPLE_HEALTH = 'apple_health';
|
|
case GARMIN = 'garmin';
|
|
case FITBIT = 'fitbit';
|
|
}
|