Aliyun.php 375 B

12345678910111213141516171819
  1. <?php
  2. namespace crmeb\services\sms\storage;
  3. use crmeb\basic\BaseSms;
  4. class Aliyun extends BaseSms
  5. {
  6. protected function initialize(array $config)
  7. {
  8. parent::initialize($config); // TODO: Change the autogenerated stub
  9. }
  10. public function send(string $phone, string $templateId, array $data = [])
  11. {
  12. // TODO: Implement send() method.
  13. }
  14. }