* @link https://github.com/pjmazenot/phpsolr-phpdoc
*/
/**
* (PECL solr >= 0.9.2)
* Class SolrDocumentField
* This class represents a field in a Solr document. All its properties are read-only.
* @link https://php.net/manual/en/class.solrdocumentfield.php
*/
final class SolrDocumentField
{
/** @var string [readonly] The name of the field. */
public $name;
/** @var string [readonly] The boost value for the field */
public $boost;
/** @var string [readonly] An array of values for this field */
public $values;
/**
* (PECL solr >= 0.9.2)
* SolrDocument constructor.
* @link https://php.net/manual/en/solrdocumentfield.construct.php
*/
public function __construct() {}
/**
* (PECL solr >= 0.9.2)
* Destructor
* @link https://php.net/manual/en/solrdocumentfield.destruct.php
*/
public function __destruct() {}
}