13 lines
280 B
PHP
13 lines
280 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\Constant;
|
||
|
|
||
|
class SmsConstant
|
||
|
{
|
||
|
const SmsLoginChannel = "login";
|
||
|
const SmsRegisterChannel = "register";
|
||
|
const SmsForgetAccountChannel = "forget_account";
|
||
|
const SmsChangeAccountChannel = "change_account";
|
||
|
}
|