123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm
- * User:林志杰
- * Email:[email protected]
- * Motto:纵有疾风起,人生不言弃!
- * Time:2020/2/8 0:23
- */
- declare(strict_types=1);
- namespace app\common\lib\sms;
- class BaiduSms implements SmsBase
- {
- public static function sendCode(string $phone, int $code): bool
- {
- return true;
- }
- }
|