summaryrefslogtreecommitdiffstats
path: root/lib/Controller/ItemApiController.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-08-29 23:39:35 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-27 15:35:31 +0200
commitd00d1ab2a28f428223e52b17052c072c64784016 (patch)
treec019f85fb7ac67147dd43ca64b4ac3cda99832f7 /lib/Controller/ItemApiController.php
parent5687baca75d47dbdffd3de74e865ad2f71ef0cb7 (diff)
Create V2 mapper, Service and management commands
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'lib/Controller/ItemApiController.php')
-rw-r--r--lib/Controller/ItemApiController.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Controller/ItemApiController.php b/lib/Controller/ItemApiController.php
index cf4c7c730..d5b1de680 100644
--- a/lib/Controller/ItemApiController.php
+++ b/lib/Controller/ItemApiController.php
@@ -20,7 +20,7 @@ use \OCP\IUserSession;
use \OCP\AppFramework\Http;
use \OCA\News\Service\ItemService;
-use \OCA\News\Service\ServiceNotFoundException;
+use \OCA\News\Service\Exceptions\ServiceNotFoundException;
class ItemApiController extends ApiController
{
@@ -223,7 +223,7 @@ class ItemApiController extends ApiController
* @NoCSRFRequired
* @CORS
*
- * @param int[] item ids
+ * @param int[] $items item ids
*/
public function readMultiple($items)
{
@@ -236,7 +236,7 @@ class ItemApiController extends ApiController
* @NoCSRFRequired
* @CORS
*
- * @param int[] item ids
+ * @param int[] $items item ids
*/
public function unreadMultiple($items)
{
@@ -266,7 +266,7 @@ class ItemApiController extends ApiController
* @NoCSRFRequired
* @CORS
*
- * @param int[] item ids
+ * @param int[] $items item ids
*/
public function starMultiple($items)
{
@@ -279,7 +279,7 @@ class ItemApiController extends ApiController
* @NoCSRFRequired
* @CORS
*
- * @param int[] item ids
+ * @param int[] $items item ids
*/
public function unstarMultiple($items)
{