42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
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 SolrPingResponse<br/>
|
|
* This class represents a response to a ping request to the server
|
|
* @link https://php.net/manual/en/class.solrpingresponse.php
|
|
*/
|
|
final class SolrPingResponse extends SolrResponse
|
|
{
|
|
/**
|
|
* (PECL solr >= 0.9.2)<br/>
|
|
* SolrPingResponse constructor.
|
|
* @link https://php.net/manual/en/solrpingresponse.construct.php
|
|
*/
|
|
public function __construct() {}
|
|
|
|
/**
|
|
* (PECL solr >= 0.9.2)<br/>
|
|
* Destructor
|
|
* @link https://php.net/manual/en/solrpingresponse.destruct.php
|
|
*/
|
|
public function __destruct() {}
|
|
|
|
/**
|
|
* (PECL solr >= 0.9.2)<br/>
|
|
* Returns the response from the server
|
|
* @link https://php.net/manual/en/solrpingresponse.getresponse.php
|
|
* @return string <p>
|
|
* Returns an empty string. (Returns the response from the server. This should be empty because the request as a
|
|
* HEAD request.)
|
|
* </p>
|
|
*/
|
|
public function getResponse() {}
|
|
}
|