CheckSignServiceFacade.php 688 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\service\api;
  3. use think\Facade;
  4. /**
  5. * Api验证签名服务门面
  6. * @package app\api\service
  7. * @method static mixed setNoNeedCheckSign($noNeedCheckSign) 设置不需要验证签名的方法名数组
  8. * @method static mixed getNoNeedCheckSign() 获取无需验证签名的方法名数组
  9. * @method static mixed needCheckSign() 获取当前节点是否需要验证签名
  10. * @method static mixed check() 验证签名
  11. * @method static mixed getError() 获取错误信息
  12. */
  13. class CheckSignServiceFacade extends Facade
  14. {
  15. protected static function getFacadeClass()
  16. {
  17. return CheckSign::class;
  18. }
  19. }