Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #27 from /issues/25-update-process-slo
Browse files Browse the repository at this point in the history
Allows to add params to processSLO
  • Loading branch information
asasmoyo authored Dec 17, 2019
2 parents 62abbfb + 056e35c commit a011772
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Saml.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,12 @@ public function processResponse()
$this->instance->processResponse();
}

public function processSLO()
/**
* Call the processSLO method on OneLogin_Saml2_Auth.
*/
public function processSLO($keepLocalSession = false, $requestId = null, $retrieveParametersFromServer = false, $cbDeleteSession = null, $stay = false)
{
$this->instance->processSLO();
$this->instance->processSLO($keepLocalSession, $requestId, $retrieveParametersFromServer, $cbDeleteSession, $stay);
}

/**
Expand Down

0 comments on commit a011772

Please sign in to comment.