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
0
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
74434e8f
Commit
74434e8f
authored
1 year ago
by
Tim van Dijen
Browse files
Options
Downloads
Patches
Plain Diff
Remove long-deprecated parameter
parent
ca6fce7f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/SimpleSAML/IdP.php
+2
-5
2 additions, 5 deletions
src/SimpleSAML/IdP.php
with
2 additions
and
5 deletions
src/SimpleSAML/IdP.php
+
2
−
5
View file @
74434e8f
...
...
@@ -467,9 +467,7 @@ class IdP
public
function
finishLogout
(
array
&
$state
):
Response
{
Assert
::
notNull
(
$state
[
'Responder'
]);
$idp
=
IdP
::
getByState
(
$this
->
globalConfig
,
$state
);
return
call_user_func
(
$state
[
'Responder'
],
$idp
,
$state
);
return
call_user_func
(
$state
[
'Responder'
],
$state
);
}
...
...
@@ -548,10 +546,9 @@ class IdP
*
* This function never returns.
*
* @param IdP $idp Deprecated. Will be removed.
* @param array &$state The logout state from doLogoutRedirect().
*/
public
static
function
finishLogoutRedirect
(
IdP
$idp
,
array
$state
):
RedirectResponse
public
static
function
finishLogoutRedirect
(
array
$state
):
RedirectResponse
{
Assert
::
notNull
(
$state
[
'core:Logout:URL'
]);
...
...
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