summaryrefslogtreecommitdiffstats
path: root/lib/Db/ItemMapperV2.php
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2021-11-15 21:20:45 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2021-11-18 14:10:57 +0100
commitf0a1c92502dbe5ddd2ee03ebe37b9f9a90972e74 (patch)
tree23335ddfc7fb73274d732b6aafb6da0130f47a8a /lib/Db/ItemMapperV2.php
parentfbacf4c1f724a12dc6d7a00238e16f1538c5da64 (diff)
Fix code style
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'lib/Db/ItemMapperV2.php')
-rw-r--r--lib/Db/ItemMapperV2.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/Db/ItemMapperV2.php b/lib/Db/ItemMapperV2.php
index 676a8bd82..8a92354d8 100644
--- a/lib/Db/ItemMapperV2.php
+++ b/lib/Db/ItemMapperV2.php
@@ -253,8 +253,6 @@ class ItemMapperV2 extends NewsMapperV2
* @param string $userId
* @param int $maxItemId
*
- * @TODO: Update this for NC 21
- *
* @return int
*
* @throws DBException
@@ -282,7 +280,11 @@ class ItemMapperV2 extends NewsMapperV2
->setParameter('unread', false, IQueryBuilder::PARAM_BOOL)
->setParameter('idList', $idList, IQueryBuilder::PARAM_INT_ARRAY);
- return $this->db->executeStatement($builder->getSQL(), $builder->getParameters(), $builder->getParameterTypes());
+ return $this->db->executeStatement(
+ $builder->getSQL(),
+ $builder->getParameters(),
+ $builder->getParameterTypes()
+ );
}
/**