forked from metin2/web
Shop improvements, renamed "shop" to "mall", support for Argon2ID
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\Models\Enums;
|
||||
|
||||
enum ShopItemPricingEnum: string
|
||||
enum MallItemPricingEnum: string
|
||||
{
|
||||
case CASH = 'CASH';
|
||||
case MILEAGE = 'MILEAGE';
|
||||
@ -10,8 +10,8 @@ enum ShopItemPricingEnum: string
|
||||
public function description(): string
|
||||
{
|
||||
return match($this) {
|
||||
self::CASH => __('shop/main.currency.cash'),
|
||||
self::MILEAGE => __('shop/main.currency.mileage')
|
||||
self::CASH => __('mall/main.currency.cash'),
|
||||
self::MILEAGE => __('mall/main.currency.mileage')
|
||||
};
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user