Files
backend/app/Enums/HarimPosition.php

18 lines
478 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Enums;
enum HarimPosition : string
{
case FASELEH_AZ_MARKAZ_OSTAN_10_KM = 'به فاصله 10 کیلومتری از مراکز استان ها';
case FASELEH_AZ_MARKAZ_SHAHR_5_KM = 'به فاصله 5 کیلومتری از سایر شهر ها';
public function value(): float
{
return match ($this) {
self::FASELEH_AZ_MARKAZ_OSTAN_10_KM => 1.0,
self::FASELEH_AZ_MARKAZ_SHAHR_5_KM => 1.5,
};
}
}