ThirdWxFacade.php 318 B

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