31 lines
797 B
PHP
31 lines
797 B
PHP
<?php
|
|
/**
|
|
* Helper autocomplete for php solr extension.
|
|
*
|
|
* @author Pierre-Julien Mazenot <pj.mazenot@gmail.com>
|
|
* @link https://github.com/pjmazenot/phpsolr-phpdoc
|
|
*/
|
|
|
|
/**
|
|
* (PECL solr >= 0.9.2)<br/>
|
|
* Class SolrQueryResponse<br/>
|
|
* This class represents a response to a query request.
|
|
* @link https://php.net/manual/en/class.solrqueryresponse.php
|
|
*/
|
|
final class SolrQueryResponse extends SolrResponse
|
|
{
|
|
/**
|
|
* (PECL solr >= 0.9.2)<br/>
|
|
* SolrQueryResponse constructor.
|
|
* @link https://php.net/manual/en/solrqueryresponse.construct.php
|
|
*/
|
|
public function __construct() {}
|
|
|
|
/**
|
|
* (PECL solr >= 0.9.2)<br/>
|
|
* Destructor
|
|
* @link https://php.net/manual/en/solrqueryresponse.destruct.php
|
|
*/
|
|
public function __destruct() {}
|
|
}
|