_user; } /** * {@inheritDoc} */ public function write($user) { $this->_user = $user; } /** * {@inheritDoc} */ public function delete() { $this->_user = null; } /** * {@inheritDoc} */ public function redirectUrl($url = null) { if ($url === null) { return $this->_redirectUrl; } if ($url === false) { $this->_redirectUrl = null; return null; } $this->_redirectUrl = $url; } }