summaryrefslogtreecommitdiffstats
path: root/lib/private/Session/CryptoSessionData.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Session/CryptoSessionData.php')
-rw-r--r--lib/private/Session/CryptoSessionData.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/Session/CryptoSessionData.php b/lib/private/Session/CryptoSessionData.php
index da9bf950ba2..892c2436040 100644
--- a/lib/private/Session/CryptoSessionData.php
+++ b/lib/private/Session/CryptoSessionData.php
@@ -72,7 +72,7 @@ class CryptoSessionData implements \ArrayAccess, ISession {
public function __destruct() {
try {
$this->close();
- } catch (SessionNotAvailableException $e){
+ } catch (SessionNotAvailableException $e) {
// This exception can occur if session is already closed
// So it is safe to ignore it and let the garbage collector to proceed
}
@@ -108,7 +108,7 @@ class CryptoSessionData implements \ArrayAccess, ISession {
* @return string|null Either the value or null
*/
public function get(string $key) {
- if(isset($this->sessionValues[$key])) {
+ if (isset($this->sessionValues[$key])) {
return $this->sessionValues[$key];
}
@@ -175,7 +175,7 @@ class CryptoSessionData implements \ArrayAccess, ISession {
* Close the session and release the lock, also writes all changed data in batch
*/
public function close() {
- if($this->isModified) {
+ if ($this->isModified) {
$encryptedValue = $this->crypto->encrypt(json_encode($this->sessionValues), $this->passphrase);
$this->session->set(self::encryptedSessionName, $encryptedValue);
$this->isModified = false;