SmsDriverInterface.php 402 B

1234567891011121314151617
  1. <?php
  2. namespace common\components;
  3. interface SmsDriverInterface
  4. {
  5. /**
  6. * Send the SMS.
  7. *
  8. * @param string $mobile
  9. * @param string $message
  10. * @param string $userId
  11. * @param string $countryId
  12. * @param string $classify
  13. * @return bool
  14. */
  15. public function send(string $mobile, string $message, string $userId, string $countryId, string $classify): bool;
  16. }