Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/documentserver_community.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2021-07-15 14:52:52 +0300
committerRobin Appelman <robin@icewind.nl>2021-07-15 14:52:52 +0300
commit3e20fc9c883034015d6f3ae95946d4f3653f6c70 (patch)
treeccdb67d7e6c7e7a3b87125972f26140b24a82d7f
parentb70fc4dd5177526f8d20c5bb1637b4190ba8ef15 (diff)
formatting fixes
-rw-r--r--lib/Channel/SessionManager.php4
1 files 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\DB\QueryBuilder\IQueryBuilder;
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 @@ class SessionManager {
$query = $this->connection->getQueryBuilder();
$cutoffTime = $this->timeFactory->getTime() -
- self::EXPIRED_SESSION_TIMEOUT;
+ self::EXPIRED_SESSION_TIMEOUT;
$query->select('session_id')
->from('documentserver_sess')