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