From 39846678d174e52962f45ec3c836a8fa3abc9485 Mon Sep 17 00:00:00 2001 From: Jaime Perez Crespo <jaime.perez@uninett.no> Date: Mon, 19 Jan 2015 12:00:40 +0100 Subject: [PATCH] Remove setLogoutState() and getLogoutState() from SimpleSAML_Session. --- lib/SimpleSAML/Session.php | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/lib/SimpleSAML/Session.php b/lib/SimpleSAML/Session.php index 170b8560e..305efeab1 100644 --- a/lib/SimpleSAML/Session.php +++ b/lib/SimpleSAML/Session.php @@ -951,37 +951,6 @@ class SimpleSAML_Session { } - /** - * Set the logout state for this session. - * - * @param array $state The state array. - * @deprecated - */ - public function setLogoutState(array $state) { - assert('isset($this->authData[$this->authority])'); - - $this->dirty = TRUE; - $this->authData[$this->authority]['LogoutState'] = $state; - } - - - /** - * Retrieve the logout state for this session. - * - * @return array The logout state. If no logout state is set, an empty array will be returned. - * @deprecated - */ - public function getLogoutState() { - assert('isset($this->authData[$this->authority])'); - - if (!isset($this->authData[$this->authority]['LogoutState'])) { - return array(); - } - - return $this->authData[$this->authority]['LogoutState']; - } - - /** * Get the current persistent authentication state. * -- GitLab