12345678910111213141516171819202122232425262728 |
- <?php namespace App\Facades\Servers\Sms;
- use Illuminate\Support\Facades\Facade;
- /**
- * 短信发送
- *
- * @method static array sendSms($desMobile,$content,$sign) 发送短信
- * @method static int|array surplus() 发送短信
- *
- * @see \App\Servers\Sms\GuoDu
- *
- *
- */
- class GuoDu extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\Aliyun\Sms';
- }
- }
- ?>
|