AccessToken.php 824 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /*
  3. * This file is part of the overtrue/wechat.
  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. /**
  11. * AccessToken.php.
  12. *
  13. * Part of Overtrue\WeChat.
  14. *
  15. * For the full copyright and license information, please view the LICENSE
  16. * file that was distributed with this source code.
  17. *
  18. * @author mingyoung <mingyoungcheung@gmail.com>
  19. * @copyright 2016
  20. *
  21. * @see https://github.com/overtrue
  22. * @see http://overtrue.me
  23. */
  24. namespace EasyWeChat\MiniProgram;
  25. use EasyWeChat\Core\AccessToken as CoreAccessToken;
  26. /**
  27. * Class AccessToken.
  28. */
  29. class AccessToken extends CoreAccessToken
  30. {
  31. /**
  32. * {@inheritdoc}.
  33. */
  34. protected $prefix = 'easywechat.common.mini.program.access_token.';
  35. }