Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
c9cb5264
Commit
c9cb5264
authored
Sep 10, 2012
by
Bas de Nooijer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved docblocks
parent
981af911
Changes
14
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
17 additions
and
23 deletions
+17
-23
library/Solarium/Core/Client/Client.php
library/Solarium/Core/Client/Client.php
+2
-9
library/Solarium/Core/Query/Result/Result.php
library/Solarium/Core/Query/Result/Result.php
+1
-1
library/Solarium/Plugin/BufferedAdd/Event/PreCommit.php
library/Solarium/Plugin/BufferedAdd/Event/PreCommit.php
+1
-1
library/Solarium/Plugin/BufferedAdd/Event/PreFlush.php
library/Solarium/Plugin/BufferedAdd/Event/PreFlush.php
+1
-1
library/Solarium/Plugin/CustomizeRequest/CustomizeRequest.php
...ary/Solarium/Plugin/CustomizeRequest/CustomizeRequest.php
+1
-1
library/Solarium/Plugin/Loadbalancer/Loadbalancer.php
library/Solarium/Plugin/Loadbalancer/Loadbalancer.php
+1
-1
library/Solarium/Plugin/ParallelExecution/ParallelExecution.php
...y/Solarium/Plugin/ParallelExecution/ParallelExecution.php
+1
-1
library/Solarium/Plugin/PrefetchIterator.php
library/Solarium/Plugin/PrefetchIterator.php
+2
-1
library/Solarium/QueryType/Analysis/Query/Document.php
library/Solarium/QueryType/Analysis/Query/Document.php
+1
-1
library/Solarium/QueryType/Analysis/Result/Document.php
library/Solarium/QueryType/Analysis/Result/Document.php
+1
-1
library/Solarium/QueryType/Select/Query/Component/FacetSet.php
...ry/Solarium/QueryType/Select/Query/Component/FacetSet.php
+1
-1
library/Solarium/QueryType/Select/Query/Query.php
library/Solarium/QueryType/Select/Query/Query.php
+2
-2
library/Solarium/QueryType/Update/Query/Command/Add.php
library/Solarium/QueryType/Update/Query/Command/Add.php
+1
-1
library/Solarium/QueryType/Update/Query/Query.php
library/Solarium/QueryType/Update/Query/Query.php
+1
-1
No files found.
library/Solarium/Core/Client/Client.php
View file @
c9cb5264
...
@@ -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
*/
*/
...
...
library/Solarium/Core/Query/Result/Result.php
View file @
c9cb5264
...
@@ -61,7 +61,7 @@ class Result implements ResultInterface
...
@@ -61,7 +61,7 @@ class Result implements ResultInterface
protected
$response
;
protected
$response
;
/**
/**
* Decode response data
* Decode
d
response data
*
*
* This is lazy loaded, {@link getData()}
* This is lazy loaded, {@link getData()}
*
*
...
...
library/Solarium/Plugin/BufferedAdd/Event/PreCommit.php
View file @
c9cb5264
...
@@ -47,7 +47,7 @@ class PreCommit extends Event
...
@@ -47,7 +47,7 @@ class PreCommit extends Event
{
{
/**
/**
* @var
array
* @var
DocumentInterface[]
*/
*/
protected
$buffer
;
protected
$buffer
;
...
...
library/Solarium/Plugin/BufferedAdd/Event/PreFlush.php
View file @
c9cb5264
...
@@ -47,7 +47,7 @@ class PreFlush extends Event
...
@@ -47,7 +47,7 @@ class PreFlush extends Event
{
{
/**
/**
* @var
array
* @var
DocumentInterface[]
*/
*/
protected
$buffer
;
protected
$buffer
;
...
...
library/Solarium/Plugin/CustomizeRequest/CustomizeRequest.php
View file @
c9cb5264
...
@@ -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
();
...
...
library/Solarium/Plugin/Loadbalancer/Loadbalancer.php
View file @
c9cb5264
...
@@ -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
();
...
...
library/Solarium/Plugin/ParallelExecution/ParallelExecution.php
View file @
c9cb5264
...
@@ -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
();
...
...
library/Solarium/Plugin/PrefetchIterator.php
View file @
c9cb5264
...
@@ -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
;
...
...
library/Solarium/QueryType/Analysis/Query/Document.php
View file @
c9cb5264
...
@@ -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
();
...
...
library/Solarium/QueryType/Analysis/Result/Document.php
View file @
c9cb5264
...
@@ -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
;
...
...
library/Solarium/QueryType/Select/Query/Component/FacetSet.php
View file @
c9cb5264
...
@@ -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
();
...
...
library/Solarium/QueryType/Select/Query/Query.php
View file @
c9cb5264
...
@@ -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
();
...
...
library/Solarium/QueryType/Update/Query/Command/Add.php
View file @
c9cb5264
...
@@ -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
();
...
...
library/Solarium/QueryType/Update/Query/Query.php
View file @
c9cb5264
...
@@ -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
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment