public function SAML2_Assertion::setNotBefore in SAML SP 2.0 Single Sign On (SSO) - SAML Service Provider 7
Set the earliest timestamp this assertion can be used.
Set this to NULL if no limit is required.
Parameters
int|NULL $notBefore The earliest timestamp this assertion is valid.:
File
- includes/
Assertion.php, line 638
Class
Code
public function setNotBefore($notBefore) {
assert('is_int($notBefore) || is_null($notBefore)');
$this->notBefore = $notBefore;
}