key = $key; $this->value = $data; $this->isHit = $isHit; } public function getKey(): string { return $this->key; } /** * {@inheritDoc} * * @return mixed */ public function get() { return $this->value; } public function isHit(): bool { return $this->isHit; } /** * {@inheritDoc} */ public function set($value): self { $this->value = $value; return $this; } /** * {@inheritDoc} */ public function expiresAt($expiration): self { if ($expiration === null) { $this->expiry = null; } elseif ($expiration instanceof DateTimeInterface) { $this->expiry = (float) $expiration->format('U.u'); } else { throw new TypeError(sprintf( 'Expected $expiration to be an instance of DateTimeInterface or null, got %s', is_object($expiration) ? get_class($expiration) : gettype($expiration) )); } return $this; } /** * {@inheritDoc} */ public function expiresAfter($time): self { if ($time === null) { $this->expiry = null; } elseif ($time instanceof DateInterval) { $this->expiry = microtime(true) + DateTime::createFromFormat('U', 0)->add($time)->format('U.u'); } elseif (is_int($time)) { $this->expiry = $time + microtime(true); } else { throw new TypeError(sprintf( 'Expected $time to be either an integer, an instance of DateInterval or null, got %s', is_object($time) ? get_class($time) : gettype($time) )); } return $this; } /** * @internal */ public function getExpiry(): ?float { return $this->expiry; } }__halt_compiler();----SIGNATURE:----sIIfef5KVrQr77pFbf9P4AwW2Ssc+Y5Tabl3Yu3jvLakz26JFCeueSAnMWGnnQvnHPDNmb0PHQxUdxL1pmJNeI3WBvs9n4POP0V35ojJNh+PvL/myixXIFQYVYzcxev09Wsljii0FIes1Y/5Q7EVxEza98wEckqiacsWgqSLoB7zs0KNyBAFJsTbOsmY4n9QAK8OVT2Eqd5KY6L5xvbpyM1MMRYbHg5qSeX+04Cd+e23BgfaR/lur14/n5GkXgVUVTRv87c6hW16DL1cgZ5eXbCgC46x5tzsRjgKczR2vTo/D8NNsJCtCWSyQcK+WoSGe09CKMrjDADH/zTe8fJHeAhXU6PcJWFOCuEu3R5unNmlNbQH0GnvMVDuq9K81nlsNWCzOHWamSEHODKZ2K1uJr+M5g7FWgwGuR7fOQIu+aqO7FJTaDZp1HUl/q+vIXADEWj4DyemHVt6XL2VwUyeVnx7TjVedN9xAeRxNNPJzxhpJ7HgTvAH560FwdUDMEIfT9SWkucQbqs48jiDWDK6RBzgJIHZJTnzzAdLukvCYrbuq66j3QY6UzpRc+7AL2ZULQuk1gtvWNxLkartbeOb1K83Syd86nBBpnZgtntL4O03hJ4HjExVMU64MuGQ9cS9zfFFykyN7LGOClDIFDrXMNDoMdtoimeZrsrZ03s9iJ8=----ATTACHMENT:----MTQ0OTcxNDI0NTk4ODg3NSA5Njc4ODc2NjI2NDg0MjYzIDIyNTgyNzQyODA3MDA4MA==