You are here

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

Retrieve the earliest timestamp this assertion is valid.

This function returns NULL if there are no restrictions on how early the assertion can be used.

Return value

int|NULL The earliest timestamp this assertion is valid.

File

includes/Assertion.php, line 626

Class

SAML2_Assertion

Code

public function getNotBefore() {
  return $this->notBefore;
}