From 3e20fc9c883034015d6f3ae95946d4f3653f6c70 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 15 Jul 2021 13:52:52 +0200 Subject: [PATCH] formatting fixes --- lib/Channel/SessionManager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Channel/SessionManager.php b/lib/Channel/SessionManager.php index fa5eba0..fc2c5b3 100644 --- a/lib/Channel/SessionManager.php +++ b/lib/Channel/SessionManager.php @@ -29,7 +29,7 @@ use OCP\IDBConnection; class SessionManager { - const EXPIRED_SESSION_TIMEOUT = 30; + const EXPIRED_SESSION_TIMEOUT = 30; private $connection; private $timeFactory; private $ipcFactory; @@ -131,7 +131,7 @@ private function getExpiredSessions(): array { $query = $this->connection->getQueryBuilder(); $cutoffTime = $this->timeFactory->getTime() - - self::EXPIRED_SESSION_TIMEOUT; + self::EXPIRED_SESSION_TIMEOUT; $query->select('session_id') ->from('documentserver_sess')