Sms.php 257 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm
  4. * User: 林志杰
  5. * Email: [email protected]
  6. * Time: 2020/1/11 17:56
  7. */
  8. declare(strict_types=1);
  9. namespace app\common\business;
  10. class Sms
  11. {
  12. public static function sendCode(): bool
  13. {
  14. return true;
  15. }
  16. }