MiniProgram.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. * MiniProgram.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\Support\Traits\PrefixedContainer;
  26. /**
  27. * Class MiniProgram.
  28. *
  29. * @property \EasyWeChat\MiniProgram\Server\Guard $server
  30. * @property \EasyWeChat\MiniProgram\Sns\Sns $sns
  31. * @property \EasyWeChat\MiniProgram\Notice\Notice $notice
  32. * @property \EasyWeChat\MiniProgram\Staff\Staff $staff
  33. * @property \EasyWeChat\MiniProgram\QRCode\QRCode $qrcode
  34. * @property \EasyWeChat\MiniProgram\Material\Temporary $material_temporary
  35. * @property \EasyWeChat\MiniProgram\Stats\Stats $stats
  36. */
  37. class MiniProgram
  38. {
  39. use PrefixedContainer;
  40. }