酒店预订平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

33 rader
598 B

  1. <?php
  2. /*
  3. * This file is part of the overtrue/socialite.
  4. *
  5. * (c) overtrue <i@overtrue.me>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. namespace Overtrue\Socialite;
  11. /**
  12. * Interface WeChatComponentInterface.
  13. */
  14. interface WeChatComponentInterface
  15. {
  16. /**
  17. * Return the open-platform component app id.
  18. *
  19. * @return string
  20. */
  21. public function getAppId();
  22. /**
  23. * Return the open-platform component access token string.
  24. *
  25. * @return string
  26. */
  27. public function getToken();
  28. }