1234567891011121314151617 |
- <?php
- namespace App\Facades;
- use Illuminate\Support\Facades\Facade;
- /**
- * @method static array getAccessToken(string $code);
- * @method static array getUserInfo(string $accessToken, string $openid);
- *
- */
- class WxUserFacade extends Facade
- {
- protected static function getFacadeAccessor(){
- return 'WxUserFacadeRepository';
- }
- }
|