$wechatId, ] ) ->value('activity'); return json_decode($activity)->yesterdayMsgCount ?? 0; } /** * @inheritDoc */ public function settingFactor($wechatId): WechatAccountWeightResultSetInterface { $times = intval($this->getChatTimesPerDay($wechatId) / 50 * 100); // 规定每天发送50条消息起拥有最高权重 $this->weight = $times > 100 ? 100 : $times; return $this; } /** * @inheritDoc */ public function getResult(): int { return $this->weight ?: 0; } }