From 1b621d1617ca4f54d8048098c0586b254c4681a7 Mon Sep 17 00:00:00 2001 From: Jaime Perez Crespo <jaime.perez@uninett.no> Date: Thu, 6 Aug 2015 15:14:22 +0200 Subject: [PATCH] Fix phpdoc comments for SimpleSAML_IdP_LogoutIFrame. --- lib/SimpleSAML/IdP/LogoutIFrame.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/SimpleSAML/IdP/LogoutIFrame.php b/lib/SimpleSAML/IdP/LogoutIFrame.php index e7fdc6e95..f8cd6b8c8 100644 --- a/lib/SimpleSAML/IdP/LogoutIFrame.php +++ b/lib/SimpleSAML/IdP/LogoutIFrame.php @@ -1,17 +1,17 @@ <?php /** - * Class which handles iframe logout. + * Class that handles iframe logout. * - * @package simpleSAMLphp + * @package SimpleSAMLphp */ class SimpleSAML_IdP_LogoutIFrame extends SimpleSAML_IdP_LogoutHandler { /** * Start the logout operation. * - * @param array &$state The logout state. - * @param string|NULL $assocId The SP we are logging out from. + * @param array &$state The logout state. + * @param string|null $assocId The SP we are logging out from. */ public function startLogout(array &$state, $assocId) { assert('is_string($assocId) || is_null($assocId)'); @@ -57,9 +57,9 @@ class SimpleSAML_IdP_LogoutIFrame extends SimpleSAML_IdP_LogoutHandler { * * This function will never return. * - * @param string $assocId The association that is terminated. - * @param string|NULL $relayState The RelayState from the start of the logout. - * @param SimpleSAML_Error_Exception|NULL $error The error that occurred during session termination (if any). + * @param string $assocId The association that is terminated. + * @param string|NULL $relayState The RelayState from the start of the logout. + * @param SimpleSAML_Error_Exception|null $error The error that occurred during session termination (if any). */ public function onResponse($assocId, $relayState, SimpleSAML_Error_Exception $error = NULL) { assert('is_string($assocId)'); -- GitLab