Skip to content

Commit

Permalink
Style fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
madpilot78 committed Aug 17, 2024
1 parent 741594a commit 166b3f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Auth/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ private function login(): string
$this->cache->set(
$this->config->cacheKeyBase . self::SESSION_KEY,
$result['session_token'],
$this->config->tokenTTL
$this->config->tokenTTL,
);
$this->cache->set(
$this->config->cacheKeyBase . self::PERMISSIONS_KEY,
$result['permissions'],
$this->config->tokenTTL
$this->config->tokenTTL,
);

$this->logger->debug('FreeBoxPHP ending Auth\Session::login() after query');
Expand Down

0 comments on commit 166b3f8

Please sign in to comment.