12345678910111213141516171819 |
- <?php
- /**
- * Created by PhpStorm
- * User: 林志杰
- * Email: [email protected]
- * Time: 2020/1/11 17:56
- */
- declare(strict_types=1);
- namespace app\common\business;
- class Sms
- {
- public static function sendCode(): bool
- {
- return true;
- }
- }
|