Phirehose::setFollow PHP Method

setFollow() public method

Applies to: METHOD_FILTER
public setFollow ( array $userIds )
$userIds array Array of Twitter integer userIDs
    public function setFollow($userIds)
    {
        $userIds = $userIds === NULL ? array() : $userIds;
        sort($userIds);
        // Non-optimal but necessary
        if ($this->followIds != $userIds) {
            $this->filterChanged = TRUE;
        }
        $this->followIds = $userIds;
    }