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

Improved docblocks

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