Config.php 670 B

123456789101112131415161718192021222324252627282930313233343536
  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. * Config.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 overtrue <i@overtrue.me>
  19. * @copyright 2015
  20. *
  21. * @see https://github.com/overtrue/wechat
  22. * @see http://overtrue.me
  23. */
  24. namespace EasyWeChat\Foundation;
  25. use EasyWeChat\Support\Collection;
  26. /**
  27. * Class Config.
  28. */
  29. class Config extends Collection
  30. {
  31. }