The Gitlab instance will be restarted on Monday April 28th at 2AM. There will be a short interruption of service.

Skip to content
Snippets Groups Projects
Commit 85473b8a authored by Demian Katz's avatar Demian Katz
Browse files

Fixed inaccurate doc comments.

parent de7a88c6
No related merge requests found
......@@ -33,6 +33,7 @@ use VuFindSearch\Backend\BackendInterface;
use VuFindSearch\Feature\RetrieveBatchInterface;
use VuFindSearch\Feature\RandomInterface;
use VuFindSearch\Backend\Exception\BackendException;
use VuFindSearch\Response\RecordCollectionInterface;
use Zend\EventManager\EventManagerInterface;
use Zend\EventManager\EventManager;
......@@ -91,7 +92,7 @@ class Service
* @param integer $limit Search limit
* @param ParamBag $params Search backend parameters
*
* @return ResponseInterface
* @return RecordCollectionInterface
*/
public function search($backend, Query\AbstractQuery $query, $offset = 0,
$limit = 20, ParamBag $params = null
......@@ -120,7 +121,7 @@ class Service
* @param string $id Record identifier
* @param ParamBag $params Search backend parameters
*
* @return ResponseInterface
* @return RecordCollectionInterface
*/
public function retrieve($backend, $id, ParamBag $params = null)
{
......@@ -148,7 +149,7 @@ class Service
* @param array $ids Record identifier
* @param ParamBag $params Search backend parameters
*
* @return ResponseInterface
* @return RecordCollectionInterface
*/
public function retrieveBatch($backend, $ids, ParamBag $params = null)
{
......@@ -199,7 +200,7 @@ class Service
* @param integer $limit Search limit
* @param ParamBag $params Search backend parameters
*
* @return ResponseInterface
* @return RecordCollectionInterface
*/
public function random($backend, $query, $limit = 20, $params = null)
{
......
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