| 1234567891011121314151617 |
- <?php
- namespace common\components;
- interface SmsDriverInterface
- {
- /**
- * Send the SMS.
- *
- * @param string $mobile
- * @param string $message
- * @param string $userId
- * @param string $countryId
- * @param string $classify
- * @return bool
- */
- public function send(string $mobile, string $message, string $userId, string $countryId, string $classify): bool;
- }
|