Skip to content
Snippets Groups Projects
Unverified Commit 07da1427 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Fix a couple of issues reported by scrutinizer.

parent 57df7b25
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ class SessionHandlerStore extends SessionHandlerCookie ...@@ -54,7 +54,7 @@ class SessionHandlerStore extends SessionHandlerCookie
$session = $this->store->get('session', $sessionId); $session = $this->store->get('session', $sessionId);
if ($session !== null) { if ($session !== null) {
assert($session instanceof SimpleSAML_Session); assert($session instanceof \SimpleSAML_Session);
return $session; return $session;
} }
......
...@@ -302,6 +302,7 @@ class Signer ...@@ -302,6 +302,7 @@ class Signer
$options $options
); );
/** @var \RobRichards\XMLSecLibs\XMLSecurityKey $this->privateKey */
$objXMLSecDSig->sign($this->privateKey); $objXMLSecDSig->sign($this->privateKey);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment