From ca77216e7ce9f3f43b9961186f5ebd3e8460d19e Mon Sep 17 00:00:00 2001
From: Jaime Perez Crespo <jaime.perez@uninett.no>
Date: Thu, 6 Aug 2015 16:13:03 +0200
Subject: [PATCH] Fix phpdoc comments for SimpleSAML_Bindings_Shib13_HTTPPost.

---
 lib/SimpleSAML/Bindings/Shib13/HTTPPost.php | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/lib/SimpleSAML/Bindings/Shib13/HTTPPost.php b/lib/SimpleSAML/Bindings/Shib13/HTTPPost.php
index 116beb6df..ea4d1352f 100644
--- a/lib/SimpleSAML/Bindings/Shib13/HTTPPost.php
+++ b/lib/SimpleSAML/Bindings/Shib13/HTTPPost.php
@@ -4,7 +4,7 @@
  * Implementation of the Shibboleth 1.3 HTTP-POST binding.
  *
  * @author Andreas Ă…kre Solberg, UNINETT AS. <andreas.solberg@uninett.no>
- * @package simpleSAMLphp
+ * @package SimpleSAMLphp
  */
 class SimpleSAML_Bindings_Shib13_HTTPPost {
 
@@ -19,11 +19,11 @@ class SimpleSAML_Bindings_Shib13_HTTPPost {
 	/**
 	 * Send an authenticationResponse using HTTP-POST.
 	 *
-	 * @param string $response  The response which should be sent.
-	 * @param SimpleSAML_Configuration $idpmd  The metadata of the IdP which is sending 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 $shire  The shire which should receive the response.
+	 * @param string $response The response which should be sent.
+	 * @param SimpleSAML_Configuration $idpmd The metadata of the IdP which is sending 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 $shire The shire which should receive the response.
 	 */
 	public function sendResponse($response, SimpleSAML_Configuration $idpmd, SimpleSAML_Configuration $spmd, $relayState, $shire) {
 
@@ -93,8 +93,8 @@ class SimpleSAML_Bindings_Shib13_HTTPPost {
 	/**
 	 * Decode a received response.
 	 *
-	 * @param array $post  POST data received.
-	 * @return SimpleSAML_XML_Shib13_AuthnResponse  Response.
+	 * @param array $post POST data received.
+	 * @return SimpleSAML_XML_Shib13_AuthnResponse The response decoded into an object.
 	 */
 	public function decodeResponse($post) {
 		assert('is_array($post)');
-- 
GitLab