Skip to content
Snippets Groups Projects
Commit 1b621d16 authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Fix phpdoc comments for SimpleSAML_IdP_LogoutIFrame.

parent 0f57c993
Branches
Tags
No related merge requests found
<?php <?php
/** /**
* Class which handles iframe logout. * Class that handles iframe logout.
* *
* @package simpleSAMLphp * @package SimpleSAMLphp
*/ */
class SimpleSAML_IdP_LogoutIFrame extends SimpleSAML_IdP_LogoutHandler { class SimpleSAML_IdP_LogoutIFrame extends SimpleSAML_IdP_LogoutHandler {
/** /**
* Start the logout operation. * Start the logout operation.
* *
* @param array &$state The logout state. * @param array &$state The logout state.
* @param string|NULL $assocId The SP we are logging out from. * @param string|null $assocId The SP we are logging out from.
*/ */
public function startLogout(array &$state, $assocId) { public function startLogout(array &$state, $assocId) {
assert('is_string($assocId) || is_null($assocId)'); assert('is_string($assocId) || is_null($assocId)');
...@@ -57,9 +57,9 @@ class SimpleSAML_IdP_LogoutIFrame extends SimpleSAML_IdP_LogoutHandler { ...@@ -57,9 +57,9 @@ class SimpleSAML_IdP_LogoutIFrame extends SimpleSAML_IdP_LogoutHandler {
* *
* This function will never return. * This function will never return.
* *
* @param string $assocId The association that is terminated. * @param string $assocId The association that is terminated.
* @param string|NULL $relayState The RelayState from the start of the logout. * @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 SimpleSAML_Error_Exception|null $error The error that occurred during session termination (if any).
*/ */
public function onResponse($assocId, $relayState, SimpleSAML_Error_Exception $error = NULL) { public function onResponse($assocId, $relayState, SimpleSAML_Error_Exception $error = NULL) {
assert('is_string($assocId)'); assert('is_string($assocId)');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment