123456789101112131415161718192021222324252627282930 |
- <?php namespace App\Facades\Servers\WechatWork;
- use Illuminate\Support\Facades\Facade;
- /**
- * 联系我
- *
- * @method static array getList(string $cursor,int $limit=10) 获取列表
- * @method static array getOne(string $configId) 获取详情
- * @method static array add(string $config,int $type=2,int $scene=2) 添加
- * @method static string edit(string $configId,array $config) 编辑
- * @method static string del(string $configId) 删除
- *
- * @see \App\Servers\WechatWork\ContactWay
- *
- */
- class ContactWay extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\WechatWork\ContactWay';
- }
- }
- ?>
|