Skip to content
Snippets Groups Projects
Commit ab7303e0 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Fixes for lib/SimpleSAML/Bindings

parent 9d327f86
No related branches found
No related tags found
No related merge requests found
...@@ -181,8 +181,8 @@ class Artifact ...@@ -181,8 +181,8 @@ class Artifact
]; ];
// Fetch the artifact // Fetch the artifact
$response = HTTP::fetch($url, $opts);
/** @var string $response */ /** @var string $response */
$response = HTTP::fetch($url, $opts);
XML::debugSAMLMessage($response, 'in'); XML::debugSAMLMessage($response, 'in');
// Find the response in the SOAP message // Find the response in the SOAP message
......
...@@ -20,12 +20,12 @@ use SimpleSAML\XML\Signer; ...@@ -20,12 +20,12 @@ use SimpleSAML\XML\Signer;
class HTTPPost class HTTPPost
{ {
/** /**
* @var \SimpleSAML\Configuration * @var \SimpleSAML\Configuration|null
*/ */
private $configuration = null; private $configuration = null;
/** /**
* @var \SimpleSAML\Metadata\MetaDataStorageHandler * @var \SimpleSAML\Metadata\MetaDataStorageHandler|null
*/ */
private $metadata = null; private $metadata = null;
...@@ -53,6 +53,7 @@ class HTTPPost ...@@ -53,6 +53,7 @@ class HTTPPost
* @param \SimpleSAML\Configuration $spmd The metadata of the SP which is receiving the response. * @param \SimpleSAML\Configuration $spmd The metadata of the SP which is receiving the response.
* @param string|null $relayState The relaystate for the SP. * @param string|null $relayState The relaystate for the SP.
* @param string $shire The shire which should receive the response. * @param string $shire The shire which should receive the response.
* @return void
*/ */
public function sendResponse( public function sendResponse(
$response, $response,
......
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