X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=application%2Fsecurity%2FSessionManager.php;h=994fcbe52ceb30cd4086369c46c89b9d66832260;hb=6c50a6ccceecf54850e62c312ab2397b84d89ab4;hp=b8b8ab8d18ccad003f897c78072b12e94d410b22;hpb=1410dce2db310e71b5e683b0871c2f28d8807844;p=github%2Fshaarli%2FShaarli.git diff --git a/application/security/SessionManager.php b/application/security/SessionManager.php index b8b8ab8d..994fcbe5 100644 --- a/application/security/SessionManager.php +++ b/application/security/SessionManager.php @@ -196,4 +196,10 @@ class SessionManager } return true; } + + /** @return array Local reference to the global $_SESSION array */ + public function getSession(): array + { + return $this->session; + } }