11 lines
179 B
PHP
11 lines
179 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum WeightGoal: string
|
|
{
|
|
case LOSE_WEIGHT = 'lose_weight';
|
|
case MAINTAIN_WEIGHT = 'maintain_weight';
|
|
case GAIN_WEIGHT = 'gain_weight';
|
|
}
|