Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
31773aa6
Commit
31773aa6
authored
9 years ago
by
Jaime Perez Crespo
Browse files
Options
Downloads
Patches
Plain Diff
Fix phpdoc comments for the SimpleSAML_IdP_LogoutHandler abstract class.
parent
b289314b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/SimpleSAML/IdP/LogoutHandler.php
+8
-8
8 additions, 8 deletions
lib/SimpleSAML/IdP/LogoutHandler.php
with
8 additions
and
8 deletions
lib/SimpleSAML/IdP/LogoutHandler.php
+
8
−
8
View file @
31773aa6
...
...
@@ -3,7 +3,7 @@
/**
* Base class for logout handlers.
*
* @package
s
impleSAMLphp
* @package
S
impleSAMLphp
*/
abstract
class
SimpleSAML_IdP_LogoutHandler
{
...
...
@@ -18,7 +18,7 @@ abstract class SimpleSAML_IdP_LogoutHandler {
/**
* Initialize this logout handler.
*
* @param SimpleSAML_IdP $idp
The IdP we are logging out from.
* @param SimpleSAML_IdP $idp The IdP we are logging out from.
*/
public
function
__construct
(
SimpleSAML_IdP
$idp
)
{
$this
->
idp
=
$idp
;
...
...
@@ -30,8 +30,8 @@ abstract class SimpleSAML_IdP_LogoutHandler {
*
* This function must never return.
*
* @param array &$state
The logout state.
* @param string|
NULL
$assocId
The association that started the logout.
* @param array &$state The logout state.
* @param string|
null
$assocId The association that started the logout.
*/
abstract
public
function
startLogout
(
array
&
$state
,
$assocId
);
...
...
@@ -41,15 +41,15 @@ abstract class 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)'
);
assert
(
'is_string($relayState) || is_null($relayState)'
);
/
* D
on't do anything by default
. */
/
/ d
on't do anything by default
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment