SevenShores\Hubspot\Resources\Contacts::search PHP Method

    function search($query, $params = [])
    {
        $endpoint = "https://api.hubapi.com/contacts/v1/search/query";
        $params['q'] = $query;
        $queryString = build_query_string($params);
        return $this->client->request('get', $endpoint, [], $queryString);
    }