Site.php 726 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Facade;
  3. use Illuminate\Support\Facades\Facade;
  4. /**
  5. * @package App\Facades\Site
  6. * @see app/Client/Site.php
  7. * @method static getUid()
  8. * @method static getChannelId()
  9. * @method static getChannelType()
  10. * @method static getChannelPayId()
  11. * @method static getSendOrderId()
  12. * @method static getFromUid()
  13. * @method static getToken()
  14. * @method static getRecentBooks()
  15. * @method static getCurrentChapter()
  16. * @method static getRecentBid()
  17. * @method static getCurrentChannelId()
  18. * @method static getCurrentChannelName()
  19. * @method static getAccount()
  20. * @method static getPhone()
  21. */
  22. class Site extends Facade
  23. {
  24. protected static function getFacadeAccessor()
  25. {
  26. return 'Site';
  27. }
  28. }