1234567891011121314151617 |
- <?php
- namespace App\Facades;
- use Illuminate\Support\Facades\Facade;
- /**
- * @method static array authorization();
- * @method static array getUserInfo(string $weichatUid);
- *
- */
- class ThirdWxFacade extends Facade
- {
- protected static function getFacadeAccessor(){
- return 'ThirdWxFacadeRepository';
- }
- }
|