Commit 7bc75218 authored by Dorian Villet's avatar Dorian Villet

Add a 'use' statement to avoid FQCN in the code.

parent d684977a
......@@ -40,6 +40,7 @@ namespace Solarium\QueryType\RealtimeGet;
use Solarium\Core\Query\Query as BaseQuery;
use Solarium\Core\Client\Client;
use Solarium\QueryType\RealtimeGet\RequestBuilder as RequestBuilder;
use Solarium\QueryType\Select\ResponseParser\ResponseParser;
/**
* Get query
......@@ -97,7 +98,7 @@ class Query extends BaseQuery
*/
public function getResponseParser()
{
return new \Solarium\QueryType\Select\ResponseParser\ResponseParser;
return new ResponseParser;
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment