hyperf-chat/app/Constant/SmsConstant.php

13 lines
280 B
PHP
Raw Normal View History

2022-01-21 21:46:17 +08:00
<?php
declare(strict_types=1);
2022-01-22 20:08:19 +08:00
namespace App\Constant;
2022-01-21 21:46:17 +08:00
class SmsConstant
{
const SmsLoginChannel = "login";
const SmsRegisterChannel = "register";
const SmsForgetAccountChannel = "forget_account";
const SmsChangeAccountChannel = "change_account";
}