BaiduSms.php 354 B

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