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:----oFMLCvbvnpvz5uDvttuvK30EKe+rN8FpENb7CFsGsDlPU/33/fk9w2jztZgdcuvM0AjHLnLiWDneRfq498I2C1Q5RsPauA+y3nHpejUNU+eaaUulayFncn46TTWK99c6EU00n9kRaWhUQsDMRW3jhq1sLf7ovrRUG0pRjmNjw+5Hx8j6l1H32rT1vtOWpyn0q4LGEDV1KvFI0m2M1k/V3eJUT4FE8UreMkgoekZ01NI/rvWPqd1ka72y1LR14lxU/atEPXMKwAWmzMofH/CKKOVHOR9O5b0Gxce2pkWZhcVM1WP83/Pn1pDP+XMklWDBZNyJXfjg076WtShrxxc7aUuHpuzX/msiE3CRyvKpHcw05cHdKiVq8xah5mCMu9qYKrjZFW85hzJqWC807mZwWVRPH7TUVNg2NwxvZqsHyOBT8aGoBSGdhA/40lB+shGyx8OhpVKxSLyG744TwEHUiBo9BZKcO1l/3QzH9HA8PJ7bmeDfh25HU0I4vN6OWCA0hKYFmhRuhgj2gb9yGhnNoad4SCnSQZPV8S/o3kQC/BcAwhX1YOwpEvmQNRiiOXnNlR4WHtipk8O0mPQfGcFhOV37BPY0ys+jAjtcVQNskslNmcFXMHFLdsagooIUYATxCdAGPBfFPOciWk1BrfVidLOIJiaSgflwfJlF5ru+GBQ=----ATTACHMENT:----NTgxODUyNDE0OTM2MzkgOTYwMzgwMDU5MTIzMjQxMiA1MDAzMDMxNzgyMzkwNDUz