diff options
author | Jaime Perez Crespo <jaime.perez@uninett.no> | 2015-08-04 17:47:30 +0200 |
---|---|---|
committer | Jaime Perez Crespo <jaime.perez@uninett.no> | 2015-08-04 17:47:30 +0200 |
commit | 9ccb23dd88e33e6c05133ec40cc29a7fee5719e8 (patch) | |
tree | bcdd81643a36d5284841908cebec1ab28c8332cf /lib/SimpleSAML/Metadata | |
parent | c6698baddd397e7642741d5bc204457a7eea570c (diff) | |
download | simplesamlphp-9ccb23dd88e33e6c05133ec40cc29a7fee5719e8.zip simplesamlphp-9ccb23dd88e33e6c05133ec40cc29a7fee5719e8.tar.gz simplesamlphp-9ccb23dd88e33e6c05133ec40cc29a7fee5719e8.tar.bz2 |
Go back to int, which is the actual value returned by time().
Diffstat (limited to 'lib/SimpleSAML/Metadata')
-rw-r--r-- | lib/SimpleSAML/Metadata/SAMLBuilder.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/SimpleSAML/Metadata/SAMLBuilder.php b/lib/SimpleSAML/Metadata/SAMLBuilder.php index 8acdd68..29e296c 100644 --- a/lib/SimpleSAML/Metadata/SAMLBuilder.php +++ b/lib/SimpleSAML/Metadata/SAMLBuilder.php @@ -23,7 +23,7 @@ class SimpleSAML_Metadata_SAMLBuilder /** * The maximum time in seconds the metadata should be cached. * - * @var double|null + * @var int|null */ private $maxCache = null; @@ -31,7 +31,7 @@ class SimpleSAML_Metadata_SAMLBuilder /** * The maximum time in seconds since the current time that this metadata should be considered valid. * - * @var double|null + * @var int|null */ private $maxDuration = null; |