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
e2ac5541
Commit
e2ac5541
authored
Aug 21, 2013
by
Dorian Villet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix more PHPDocs.
parent
adf4dd56
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
16 deletions
+16
-16
library/Solarium/Core/Client/Adapter/Curl.php
library/Solarium/Core/Client/Adapter/Curl.php
+1
-1
library/Solarium/Plugin/ParallelExecution/ParallelExecution.php
...y/Solarium/Plugin/ParallelExecution/ParallelExecution.php
+1
-1
library/Solarium/QueryType/Analysis/Query/Document.php
library/Solarium/QueryType/Analysis/Query/Document.php
+4
-4
library/Solarium/QueryType/Select/Query/Component/FacetSet.php
...ry/Solarium/QueryType/Select/Query/Component/FacetSet.php
+2
-2
library/Solarium/QueryType/Select/Query/Query.php
library/Solarium/QueryType/Select/Query/Query.php
+1
-1
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
+6
-6
No files found.
library/Solarium/Core/Client/Adapter/Curl.php
View file @
e2ac5541
...
...
@@ -222,7 +222,7 @@ class Curl extends Configurable implements AdapterInterface
* @throws HttpException
* @param string $data
* @param array $headers
* @param
Curl handle
$handle
* @param
resource
$handle
* @return void
*/
public
function
check
(
$data
,
$headers
,
$handle
)
...
...
library/Solarium/Plugin/ParallelExecution/ParallelExecution.php
View file @
e2ac5541
...
...
@@ -138,7 +138,7 @@ class ParallelExecution extends Plugin
/**
* Execute queries parallel
*
* @return Result[]
* @return
\Solarium\Core\Query\Result\
Result[]
*/
public
function
execute
()
{
...
...
library/Solarium/QueryType/Analysis/Query/Document.php
View file @
e2ac5541
...
...
@@ -99,8 +99,8 @@ class Document extends Query
/**
* Add a single document
*
* @param
objec
t $document
* @return self Provides fluent interface
* @param
\Solarium\QueryType\Update\Query\Document\Documen
t $document
* @return self
Provides fluent interface
*/
public
function
addDocument
(
$document
)
{
...
...
@@ -112,8 +112,8 @@ class Document extends Query
/**
* Add multiple documents
*
* @param DocumentInterface[] $documents
* @return self fluent interface
* @param
\Solarium\QueryType\Update\Query\Document\
DocumentInterface[] $documents
* @return self
Provides
fluent interface
*/
public
function
addDocuments
(
$documents
)
{
...
...
library/Solarium/QueryType/Select/Query/Component/FacetSet.php
View file @
e2ac5541
...
...
@@ -385,8 +385,8 @@ class FacetSet extends Component
*
* You can remove a facet by passing its key or the facet instance
*
* @param string|Facet\Facet $facet
* @return self Provides fluent interface
* @param string|
\Solarium\QueryType\Select\Query\Component\
Facet\Facet $facet
* @return self
Provides fluent interface
*/
public
function
removeFacet
(
$facet
)
{
...
...
library/Solarium/QueryType/Select/Query/Query.php
View file @
e2ac5541
...
...
@@ -190,7 +190,7 @@ class Query extends BaseQuery
/**
* Search components
*
* @var Component[]
* @var
Abstract
Component[]
*/
protected
$components
=
array
();
...
...
library/Solarium/QueryType/Update/Query/Command/Add.php
View file @
e2ac5541
...
...
@@ -52,7 +52,7 @@ class Add extends Command
/**
* Documents to add
*
* @var DocumentInterface[]
* @var
\Solarium\QueryType\Update\Query\Document\
DocumentInterface[]
*/
protected
$documents
=
array
();
...
...
library/Solarium/QueryType/Update/Query/Query.php
View file @
e2ac5541
...
...
@@ -236,8 +236,8 @@ class Query extends BaseQuery
*
* You can remove a command by passing its key or by passing the command instance.
*
* @param string|Command\Command $command
* @return self Provides fluent interface
* @param string|
\Solarium\QueryType\Update\Query\
Command\Command $command
* @return self
Provides fluent interface
*/
public
function
remove
(
$command
)
{
...
...
@@ -349,10 +349,10 @@ class Query extends BaseQuery
* If you need more control, like choosing a key for the command you need to
* create you own command instance and use the add method.
*
* @param Document $document
* @param boolean $overwrite
* @param int $commitWithin
* @return self Provides fluent interface
* @param Document
Interface
$document
* @param boolean
$overwrite
* @param int
$commitWithin
* @return self
Provides fluent interface
*/
public
function
addDocument
(
$document
,
$overwrite
=
null
,
$commitWithin
=
null
)
...
...
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