Files
cunkebao_v3/Server/extend/library/Interfaces/WechatFriendAddLimitAssessment.php

19 lines
439 B
PHP
Raw Permalink Normal View History

<?php
2025-10-23 09:51:43 +08:00
namespace library\Interfaces;
2025-10-23 09:51:43 +08:00
use library\Interfaces\WechatAccountWeightAssessment as WechatAccountWeightAssessmentInterface;
/**
* 微信账号加友权重评估
*/
interface WechatFriendAddLimitAssessment
{
/**
* 计算添加好友数量
*
* @param WechatAccountWeightAssessmentInterface $weight
* @return int
*/
public function maxLimit(WechatAccountWeightAssessmentInterface $weight): int;
}