public function SAML2_Assertion::getNotOnOrAfter in SAML SP 2.0 Single Sign On (SSO) - SAML Service Provider 7
Retrieve the expiration timestamp of this assertion.
This function returns NULL if there are no restrictions on how late the assertion can be used.
Return value
int|NULL The latest timestamp this assertion is valid.
File
- includes/
Assertion.php, line 653
Class
Code
public function getNotOnOrAfter() {
return $this->notOnOrAfter;
}