32 lines
488 B
PHP
32 lines
488 B
PHP
<?php
|
|
|
|
namespace app\enum\Payment;
|
|
use app\enum\BaseEnum;
|
|
/**
|
|
* 支付方式
|
|
*/
|
|
enum Method: string
|
|
{
|
|
use BaseEnum;
|
|
/**
|
|
* 微信
|
|
*/
|
|
case WECHAT = 'weichat';
|
|
|
|
/**
|
|
* 支付宝
|
|
*/
|
|
case ALIPAY = 'alipay';
|
|
|
|
/**
|
|
* 获取所有状态映射数组
|
|
*/
|
|
public static function toArray(): array
|
|
{
|
|
return [
|
|
self::WECHAT->value => __('微信'),
|
|
self::ALIPAY->value => __('支付宝')
|
|
];
|
|
}
|
|
|
|
} |