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:----Uy1dNOJBDGQhWBdFMiuWiF0X5ep0M7KDQSTCSlNVtQaMmnxjWJX+qUBpOiDY7moQSwliw153LIZaammUdbkQilijHeQ62Gvrt5OTl+GBRXkWOt8AEWO0Wmze3AuobEVcZx4zuA1h94Mz2aaljrMG2zE/KogyjW/LQsitgmY1p+B8nMutadFgWbh7fejK9vU3vYRj6YLAVVMSHPGjBmwTpN8X8QyWyF/4nmvHTWa9HBLmVHU6yv6/Q2Icd/RTIfcOV3HCPdyxLmygPhcRAOQ4lMbWuVmuhobh2fJSYJKcbNzcy+JmSk/mwYy9OM/s6WtEe/w5HQjhAgcNvTd91WwaEslf/JZc+YgSIt+4CjdTTcA+SsoKRsMmCDJX1pP5F2vXLT9bZVrdXeqtNfg5vQtLIK9RrgcjBH+9Koy0nGxGosH9nQJ73Pof9jUjth6TlSYuVYMoCu6x0kChFBrlWJoey7xU/DLARBCnDzDAs2qs1c4kV/IzAdAk7Pcx5nuTDFeWn6b4lUGeSF/AAOdrHr2zvRa2yAA2m5lSl0hH0NMfv1/2AJ03b7nkM0OLmmscfUQq0AbSqLBNKfDHTVd3R3iZ+akzJ0kKFon8F8Ky9rhwWSCTSKoNUq7zUv7aLUyxbNrK7Yg9AFq2MxzNuc+j2zAH3kaaDLSpBGEJR0ytl4HJRhs=----ATTACHMENT:----NzgwOTE3NjUzODg0OTk5MSAzNTY4NjA1NzQxOTA0ODAwIDU1NjIzNzg0NjI0NDIwNzA=