WxUserFacade.php 354 B

1234567891011121314151617
  1. <?php
  2. namespace App\Facades;
  3. use Illuminate\Support\Facades\Facade;
  4. /**
  5. * @method static array getAccessToken(string $code);
  6. * @method static array getUserInfo(string $accessToken, string $openid);
  7. *
  8. */
  9. class WxUserFacade extends Facade
  10. {
  11. protected static function getFacadeAccessor(){
  12. return 'WxUserFacadeRepository';
  13. }
  14. }