Commit d3b40c8b authored by Markus Kalkbrenner's avatar Markus Kalkbrenner

fixed docblocks

parent b8a68b1a
...@@ -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\Select * @see \Solarium\QueryType\Select\Result\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.
...@@ -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.
......
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