summaryrefslogtreecommitdiffstats
path: root/lib/Db/FolderMapperV2.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/FolderMapperV2.php
parentfbacf4c1f724a12dc6d7a00238e16f1538c5da64 (diff)
Fix code style
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'lib/Db/FolderMapperV2.php')
-rw-r--r--lib/Db/FolderMapperV2.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/Db/FolderMapperV2.php b/lib/Db/FolderMapperV2.php
index d3f1c2429..7654d5a78 100644
--- a/lib/Db/FolderMapperV2.php
+++ b/lib/Db/FolderMapperV2.php
@@ -106,7 +106,7 @@ class FolderMapperV2 extends NewsMapperV2
* @return int
*
* @throws DBException
- * @TODO Update for NC 21
+ *
*/
public function read(string $userId, int $id, ?int $maxItemID = null): int
{
@@ -136,6 +136,10 @@ class FolderMapperV2 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()
+ );
}
}