Commit c9cb5264 authored by Bas de Nooijer's avatar Bas de Nooijer

Improved docblocks

parent 981af911
...@@ -176,14 +176,14 @@ class Client extends Configurable ...@@ -176,14 +176,14 @@ class Client extends Configurable
/** /**
* Registered plugin instances * Registered plugin instances
* *
* @var array * @var PluginInterface[]
*/ */
protected $pluginInstances = array(); protected $pluginInstances = array();
/** /**
* Registered endpoints * Registered endpoints
* *
* @var array * @var Endpoint[]
*/ */
protected $endpoints = array(); protected $endpoints = array();
...@@ -208,13 +208,6 @@ class Client extends Configurable ...@@ -208,13 +208,6 @@ class Client extends Configurable
*/ */
protected $adapter; protected $adapter;
/**
* Request builder instances
*
* @var array
*/
protected $requestBuilders;
/** /**
* Initialization hook * Initialization hook
*/ */
......
...@@ -61,7 +61,7 @@ class Result implements ResultInterface ...@@ -61,7 +61,7 @@ class Result implements ResultInterface
protected $response; protected $response;
/** /**
* Decode response data * Decoded response data
* *
* This is lazy loaded, {@link getData()} * This is lazy loaded, {@link getData()}
* *
......
...@@ -47,7 +47,7 @@ class PreCommit extends Event ...@@ -47,7 +47,7 @@ class PreCommit extends Event
{ {
/** /**
* @var array * @var DocumentInterface[]
*/ */
protected $buffer; protected $buffer;
......
...@@ -47,7 +47,7 @@ class PreFlush extends Event ...@@ -47,7 +47,7 @@ class PreFlush extends Event
{ {
/** /**
* @var array * @var DocumentInterface[]
*/ */
protected $buffer; protected $buffer;
......
...@@ -57,7 +57,7 @@ class CustomizeRequest extends Plugin ...@@ -57,7 +57,7 @@ class CustomizeRequest extends Plugin
/** /**
* Holds customizations added to this plugin * Holds customizations added to this plugin
* *
* @var array * @var Customization[]
*/ */
protected $customizations = array(); protected $customizations = array();
......
...@@ -82,7 +82,7 @@ class Loadbalancer extends Plugin ...@@ -82,7 +82,7 @@ class Loadbalancer extends Plugin
/** /**
* Registered endpoints * Registered endpoints
* *
* @var array * @var Endpoint[]
*/ */
protected $endpoints = array(); protected $endpoints = array();
......
...@@ -73,7 +73,7 @@ class ParallelExecution extends Plugin ...@@ -73,7 +73,7 @@ class ParallelExecution extends Plugin
/** /**
* Queries (and optionally clients) to execute * Queries (and optionally clients) to execute
* *
* @var array * @var Query[]
*/ */
protected $queries = array(); protected $queries = array();
......
...@@ -41,6 +41,7 @@ use Solarium\Client; ...@@ -41,6 +41,7 @@ use Solarium\Client;
use Solarium\Core\Plugin\Plugin; use Solarium\Core\Plugin\Plugin;
use Solarium\QueryType\Select\Query\Query as SelectQuery; use Solarium\QueryType\Select\Query\Query as SelectQuery;
use Solarium\QueryType\Select\Result\Result as SelectResult; use Solarium\QueryType\Select\Result\Result as SelectResult;
use Solarium\QueryType\Select\Result\DocumentInterface;
/** /**
* Prefetch plugin * Prefetch plugin
...@@ -91,7 +92,7 @@ class PrefetchIterator extends Plugin implements \Iterator, \Countable ...@@ -91,7 +92,7 @@ class PrefetchIterator extends Plugin implements \Iterator, \Countable
/** /**
* Documents from the last resultset * Documents from the last resultset
* *
* @var array * @var DocumentInterface[]
*/ */
protected $documents; protected $documents;
......
...@@ -51,7 +51,7 @@ class Document extends Query ...@@ -51,7 +51,7 @@ class Document extends Query
/** /**
* Documents to analyze * Documents to analyze
* *
* @var array * @var DocumentInterface[]
*/ */
protected $documents = array(); protected $documents = array();
......
...@@ -49,7 +49,7 @@ class Document extends BaseResult implements \IteratorAggregate, \Countable ...@@ -49,7 +49,7 @@ class Document extends BaseResult implements \IteratorAggregate, \Countable
/** /**
* Document instances array * Document instances array
* *
* @var array * @var ResultList[]
*/ */
protected $items; protected $items;
......
...@@ -94,7 +94,7 @@ class FacetSet extends Component ...@@ -94,7 +94,7 @@ class FacetSet extends Component
/** /**
* Facets * Facets
* *
* @var array * @var Facet[]
*/ */
protected $facets = array(); protected $facets = array();
......
...@@ -183,14 +183,14 @@ class Query extends BaseQuery ...@@ -183,14 +183,14 @@ class Query extends BaseQuery
/** /**
* Filterqueries * Filterqueries
* *
* @var array * @var FilterQuery[]
*/ */
protected $filterQueries = array(); protected $filterQueries = array();
/** /**
* Search components * Search components
* *
* @var array * @var Component[]
*/ */
protected $components = array(); protected $components = array();
......
...@@ -52,7 +52,7 @@ class Add extends Command ...@@ -52,7 +52,7 @@ class Add extends Command
/** /**
* Documents to add * Documents to add
* *
* @var array * @var DocumentInterface[]
*/ */
protected $documents = array(); protected $documents = array();
......
...@@ -116,7 +116,7 @@ class Query extends BaseQuery ...@@ -116,7 +116,7 @@ class Query extends BaseQuery
* The commands will be executed in the order of this array, this can be * The commands will be executed in the order of this array, this can be
* important in some cases. For instance a rollback. * important in some cases. For instance a rollback.
* *
* @var array * @var Command[]
*/ */
protected $commands = array(); protected $commands = array();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment