%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/jetbrains/phpstorm-stubs/solr/Queries/ |
Current File : /home/graphicd/public_html/vebto/vendor/jetbrains/phpstorm-stubs/solr/Queries/SolrParams.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 SolrParams<br/> * This class represents a a collection of name-value pairs sent to the Solr server during a request. * @link https://php.net/manual/en/class.solrparams.php */ abstract class SolrParams implements Serializable { /** * (PECL solr >= 0.9.2)<br/> * This is an alias for SolrParams::addParam * @link https://php.net/manual/en/solrparams.add.php * @param string $name <p> * The name of the parameter * </p> * @param string $value <p> * The value of the parameter * </p> * @return SolrParams|false <p> * Returns a SolrParams instance on success and <b>FALSE</b> on failure. * </p> */ public function add($name, $value) {} /** * (PECL solr >= 0.9.2)<br/> * Adds a parameter to the object * @link https://php.net/manual/en/solrparams.addparam.php * @param string $name <p> * The name of the parameter * </p> * @param string $value <p> * The value of the parameter * </p> * @return SolrParams|false <p> * Returns a SolrParams instance on success and <b>FALSE</b> on failure. * </p> */ public function addParam($name ,$value) {} /** * (PECL solr >= 0.9.2)<br/> * This is an alias for SolrParams::getParam * @link https://php.net/manual/en/solrparams.get.php * @param string $param_name <p> * The name of the parameter * </p> * @return mixed <p> * Returns an array or string depending on the type of parameter * </p> */ final public function get($param_name) {} /** * (PECL solr >= 0.9.2)<br/> * Returns a parameter value * @link https://php.net/manual/en/solrparams.getparam.php * @param string $param_name <p> * The name of the parameter * </p> * @return mixed <p> * Returns an array or string depending on the type of parameter * </p> */ final public function getParam($param_name) {} /** * (PECL solr >= 0.9.2)<br/> * Returns an array of non URL-encoded parameters * @link https://php.net/manual/en/solrparams.getparams.php * @return array <p> * Returns an array of non URL-encoded parameters * </p> */ final public function getParams() {} /** * (PECL solr >= 0.9.2)<br/> * Returns an array of URL-encoded parameters * @link https://php.net/manual/en/solrparams.getpreparedparams.php * @return array <p> * Returns an array of URL-encoded parameters * </p> */ final public function getPreparedParams() {} /** * (PECL solr >= 0.9.2)<br/> * Used for custom serialization * @link https://php.net/manual/en/solrparams.serialize.php * @return string <p> * Used for custom serialization * </p> */ final public function serialize() {} /** * (PECL solr >= 0.9.2)<br/> * An alias of SolrParams::setParam * @link https://php.net/manual/en/solrparams.set.php * @param string $name <p> * The name of the parameter * </p> * @param $value <p> * The parameter value * </p> * @return SolrParams|false <p> * Returns a SolrParams instance on success and <b>FALSE</b> on failure. * </p> */ final public function set($name, $value) {} /** * (PECL solr >= 0.9.2)<br/> * Sets the parameter to the specified value * @link https://php.net/manual/en/solrparams.setparam.php * @param string $name <p> * The name of the parameter * </p> * @param $value <p> * The parameter value * </p> * @return SolrParams|false <p> * Returns a SolrParams instance on success and <b>FALSE</b> on failure. * </p> */ public function setParam($name, $value) {} /** * (PECL solr >= 0.9.2)<br/> * Returns all the name-value pair parameters in the object * @link https://php.net/manual/en/solrparams.tostring.php * @param bool $url_encode <p> * Whether to return URL-encoded values * </p> * @return string|false <p> * Returns a string on success and <b>FALSE</b> on failure. * </p> */ final public function toString($url_encode = false) {} /** * (PECL solr >= 0.9.2)<br/> * Used for custom serialization * @link https://php.net/manual/en/solrparams.unserialize.php * @param string $serialized <p> * The serialized representation of the object * </p> */ final public function unserialize($serialized) {} }