You are here

public function SAML2_Assertion::setNotOnOrAfter in SAML SP 2.0 Single Sign On (SSO) - SAML Service Provider 7

Set the expiration timestamp of this assertion.

Set this to NULL if no limit is required.

Parameters

int|NULL $notOnOrAfter The latest timestamp this assertion is valid.:

File

includes/Assertion.php, line 665

Class

SAML2_Assertion

Code

public function setNotOnOrAfter($notOnOrAfter) {
  assert('is_int($notOnOrAfter) || is_null($notOnOrAfter)');
  $this->notOnOrAfter = $notOnOrAfter;
}