Skip to content

Commit

Permalink
lint: fix php
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <[email protected]>
  • Loading branch information
pulsejet committed Mar 30, 2024
1 parent d04eff2 commit 3f43153
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Db/TimelineQueryDays.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ public function getDay(
$hSq->select($hSq->expr()->literal(1))
->from('cte_folders', 'cte_f')
->andWhere($hSq->expr()->eq('cte_f.fileid', 'f.parent'))
->andWhere($hSq->expr()->eq('cte_f.hidden', $hSq->expr()->literal(1)));
->andWhere($hSq->expr()->eq('cte_f.hidden', $hSq->expr()->literal(1)))
;
$query->addSelect($query->createFunction("({$hSq->getSql()}) as hidden"));
}

Expand Down

0 comments on commit 3f43153

Please sign in to comment.