// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\common\library\wechat; /** * error code 说明. * */ class ErrorCode { public static int $OK = 0; public static int $IllegalAesKey = -41001; public static int $IllegalIv = -41002; public static int $IllegalBuffer = -41003; public static int $DecodeBase64Error = -41004; }