public function SAML2_Assertion::setIssueInstant in SAML SP 2.0 Single Sign On (SSO) - SAML Service Provider 7
Set the issue timestamp of this assertion.
Parameters
int $issueInstant The new issue timestamp of this assertion, as an UNIX timestamp.:
File
- includes/
Assertion.php, line 437
Class
Code
public function setIssueInstant($issueInstant) {
assert('is_int($issueInstant)');
$this->issueInstant = $issueInstant;
}