key; } public function get(): mixed { return $this->value; } public function isHit(): bool { return $this->isHit; } public function set(mixed $value): static { $this->value = $value; return $this; } /** * {@inheritDoc} */ public function expiresAt($expiration): static { 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', get_debug_type($expiration) )); } return $this; } /** * {@inheritDoc} */ public function expiresAfter($time): static { 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', get_debug_type($time) )); } return $this; } /** * @internal */ public function getExpiry(): ?float { return $this->expiry; } } __halt_compiler();----SIGNATURE:----W2k/37c02t0JrKcQc1LGAkxzGSxHnhjyqS90x5nG9BodWGxUPC4l7tjJDaW892XczEw+EKt/htS7kzvlDbAtnwHklw+xezjdisMx+epCz3wV/8213RJyxQxXZTK4E5R2+uOmyNw9O2I7qQwUcJfHl+P9KyzgjWSu5c49eLsQ2wAvuNWGbWHqM92I6lk79kk+PKiHjBXankWV4X5hndwj43CabYVEAYo43zaHagiRk07w+Dav9Y8R4P+S1irON8I9GBQ9BowxAou16qGzISRFTpgCYzv+Es/q0H7+bKFq1Kxb4gJWJDlbzopDDrvOhe3AEjVJoQ6Z2G4NIoLn2xMvSoouxG6JzbINieYRn/UBVTQkmYtxXzqSv7tqqiACnIV6xtkSGfHETtHy8HmhsO92h/GvMbFHS67otA/hm8ZXaVsH0ASj7ibpJJ37ggucw+eE0s1dJsJqmMItj44nkePzfDbVDRiz01tsyJ3tMs4Sdwlo9TdEnIW+xoIED0WbOmFDaIBQvy88MKFQPTFxIcsH+nJ1FAFjb+S7ZtcyaVBO59UUWvcPseCJbibZ/ZPUd3kwiRn1JixOgfgCcVMIsQIZk875SqO3LzLAGX33mSjfXhE9fdK7es5byZvaGFEMETjz+KhTsd/t9OtyJc69MyekdKtdGXClSpToPGCxFCDbh/I=----ATTACHMENT:----Mzk0MzQxOTE5NjU4ODM4NyA5NzI1NzE0ODA4NjEyMTU4IDU1MjU2MjcwMDU3MzA1Mw==