mirror of
https://github.com/php/pecl-search_engine-solr.git
synced 2026-03-23 22:52:07 +01:00
18 lines
231 B
PHP
18 lines
231 B
PHP
--TEST--
|
|
SolrDocumentField::__construct
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once "bootstrap.inc";
|
|
$field = new SolrDocumentField();
|
|
|
|
print_r($field);
|
|
?>
|
|
--EXPECT--
|
|
SolrDocumentField Object
|
|
(
|
|
[name] =>
|
|
[boost] => 0
|
|
[values] =>
|
|
)
|