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
d3b40c8b
Commit
d3b40c8b
authored
Dec 27, 2017
by
Markus Kalkbrenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed docblocks
parent
b8a68b1a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
library/Solarium/Core/Client/ClientInterface.php
library/Solarium/Core/Client/ClientInterface.php
+11
-11
No files found.
library/Solarium/Core/Client/ClientInterface.php
View file @
d3b40c8b
...
@@ -126,7 +126,7 @@ interface ClientInterface
...
@@ -126,7 +126,7 @@ interface ClientInterface
* You can remove a endpoint by passing it's key, or by passing the endpoint instance
* You can remove a endpoint by passing it's key, or by passing the endpoint instance
*
*
* @param string|Endpoint $endpoint
* @param string|Endpoint $endpoint
* @return
ClientInterface
Provides fluent interface
* @return
self
Provides fluent interface
*/
*/
public
function
removeEndpoint
(
$endpoint
);
public
function
removeEndpoint
(
$endpoint
);
...
@@ -152,7 +152,7 @@ interface ClientInterface
...
@@ -152,7 +152,7 @@ interface ClientInterface
* All queries executed without a specific endpoint will use this default endpoint.
* All queries executed without a specific endpoint will use this default endpoint.
*
*
* @param string|Endpoint $endpoint
* @param string|Endpoint $endpoint
* @return
ClientInterface
Provides fluent interface
* @return
self
Provides fluent interface
* @throws OutOfBoundsException
* @throws OutOfBoundsException
*/
*/
public
function
setDefaultEndpoint
(
$endpoint
);
public
function
setDefaultEndpoint
(
$endpoint
);
...
@@ -174,7 +174,7 @@ interface ClientInterface
...
@@ -174,7 +174,7 @@ interface ClientInterface
*
*
* @throws InvalidArgumentException
* @throws InvalidArgumentException
* @param string|Adapter\AdapterInterface $adapter
* @param string|Adapter\AdapterInterface $adapter
* @return
ClientInterface
Provides fluent interface
* @return
self
Provides fluent interface
*/
*/
public
function
setAdapter
(
$adapter
);
public
function
setAdapter
(
$adapter
);
...
@@ -229,7 +229,7 @@ interface ClientInterface
...
@@ -229,7 +229,7 @@ interface ClientInterface
*
*
* @param EventDispatcherInterface $eventDispatcher
* @param EventDispatcherInterface $eventDispatcher
*
*
* @return
$this
* @return
self Provides fluent interface
*/
*/
public
function
setEventDispatcher
(
EventDispatcherInterface
$eventDispatcher
);
public
function
setEventDispatcher
(
EventDispatcherInterface
$eventDispatcher
);
...
@@ -279,7 +279,7 @@ interface ClientInterface
...
@@ -279,7 +279,7 @@ interface ClientInterface
* You can remove a plugin by passing the plugin key, or the plugin instance
* You can remove a plugin by passing the plugin key, or the plugin instance
*
*
* @param string|PluginInterface $plugin
* @param string|PluginInterface $plugin
* @return
ClientInterface
Provides fluent interface
* @return
self
Provides fluent interface
*/
*/
public
function
removePlugin
(
$plugin
);
public
function
removePlugin
(
$plugin
);
...
@@ -352,8 +352,8 @@ interface ClientInterface
...
@@ -352,8 +352,8 @@ interface ClientInterface
* $result = $client->update($update);
* $result = $client->update($update);
* </code>
* </code>
*
*
* @see
Solarium\QueryType\Update
* @see
\Solarium\QueryType\Update\Query\Query
* @see
Solarium\Result\Update
* @see
\Solarium\QueryType\Update\Result
*
*
* @internal This is a convenience method that forwards the query to the
* @internal This is a convenience method that forwards the query to the
* execute method, thus allowing for an easy to use and clean API.
* execute method, thus allowing for an easy to use and clean API.
...
@@ -374,8 +374,8 @@ interface ClientInterface
...
@@ -374,8 +374,8 @@ interface ClientInterface
* $result = $client->select($query);
* $result = $client->select($query);
* </code>
* </code>
*
*
* @see
Solarium\QueryType\Select
* @see
\Solarium\QueryType\Select\Query\Query
* @see
Solarium\Result\Selec
t
* @see
\Solarium\QueryType\Select\Result\Resul
t
*
*
* @internal This is a convenience method that forwards the query to the
* @internal This is a convenience method that forwards the query to the
* execute method, thus allowing for an easy to use and clean API.
* execute method, thus allowing for an easy to use and clean API.
...
@@ -396,8 +396,8 @@ interface ClientInterface
...
@@ -396,8 +396,8 @@ interface ClientInterface
* $result = $client->moreLikeThis($query);
* $result = $client->moreLikeThis($query);
* </code>
* </code>
*
*
* @see
Solarium\QueryType\MoreLikeThis
* @see
\Solarium\QueryType\MoreLikeThis\Query
* @see
Solarium\Result\MoreLikeThis
* @see
\Solarium\QueryType\MoreLikeThis\Result
*
*
* @internal This is a convenience method that forwards the query to the
* @internal This is a convenience method that forwards the query to the
* execute method, thus allowing for an easy to use and clean API.
* execute method, thus allowing for an easy to use and clean API.
...
...
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