41 private $platform =
null;
48 private $value =
null;
58 $this->platform = $platform;
59 $this->value = substr($value, -self::$maximumLength);
60 $this->expires = time() + (self::MAX_NONCE_AGE * 60);
70 return $this->platform->getDataConnector()->loadPlatformNonce($this);
80 return $this->platform->getDataConnector()->savePlatformNonce($this);
88 public function delete()
90 return $this->platform->getDataConnector()->deletePlatformNonce($this);
100 return $this->platform;