Someline\Repositories\Eloquent\UserRepositoryEloquent::byUserIds PHP Method

byUserIds() public method

public byUserIds ( array | Collection $userIds )
$userIds array | Collection
    public function byUserIds($userIds)
    {
        $this->model = $this->model->whereIn('user_id', $userIds);
        return $this;
    }