123456789101112131415161718192021222324252627 |
- <?php namespace App\Facades\Servers\Aliyun;
- use Illuminate\Support\Facades\Facade;
- /**
- * 短信发送
- *
- * @method static array sendSms(string $phone,string $signName,string $templateCode,array $param=[]) 发送短信
- *
- * @see \App\Servers\Aliyun\Sms
- *
- *
- */
- class Sms extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\Aliyun\Sms';
- }
- }
- ?>
|