generated from panliang/owl-admin-starter
25 lines
435 B
PHP
25 lines
435 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
use Dcat\Admin\Admin;
|
|
|
|
enum SocialiteType: string
|
|
{
|
|
case WxMini = 'wx-mini';
|
|
case WxOfficial = 'wx-official';
|
|
|
|
public static function options()
|
|
{
|
|
return [
|
|
self::WxMini->value => '微信小程序',
|
|
self::WxOfficial->value => '微信公众号',
|
|
];
|
|
}
|
|
|
|
public function text()
|
|
{
|
|
return data_get(self::options(), $this->value);
|
|
}
|
|
}
|