ApiSign.php 489 B

1234567891011121314151617181920212223242526
  1. <?php namespace App\Facades\Servers\Encrypts;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * 接口签名
  5. *
  6. * @method static array encode( array $contents ,string $appid, string $appkey) 加密
  7. *
  8. * @see \App\Servers\Encrypts\ApiSign
  9. *
  10. */
  11. class ApiSign extends Facade
  12. {
  13. /**
  14. * Get the registered name of the component.
  15. *
  16. * @return string
  17. */
  18. protected static function getFacadeAccessor()
  19. {
  20. return '\App\Servers\Encrypts\ApiSign';
  21. }
  22. }
  23. ?>