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:----ECKtF4GzrQxrJnW12fyyS9xW214p6KNqcpJBu3iZFnmAshTZVgvoYKnBz2YWYVng/ssZzqS8xZLjc4JYPrEbPv5KpSgfxImjjq2jiVcsGkyl+cLbdQh383HSC/h4DRmjAhQxKPCsZwGluo53vcurvBjQ2j5uYF8srLJL2bnBU81R3/r8v4qVJsZ6e55HOaRg2BxDFkFzbOxGFcqU9lUXhR7UtUxmwtr7JcjuAXViFiYMIEd693wypOaqsIjvvxHGWHwee+wJeXuQXg/whVvSgy48E3jhoz7vq4lIw2VwhoGM1tRMiUqhFgxMOXYlIU7ixOcQ7r/JxhFxbL5O33iEwsi/0LoINhohi2hr86ThcqgWpTpUg82hlqfT++/Bj9eyQsMM1fYsneMBOVVd30MB0MeB9hmP3hJqLkr+CrQlSB9eBM9IoGZzgJjxtXsR6VVfMmnPpsdBB46NsiXZO3PJtFS5c0hMSU1l0MMS2SR30+cgcoXVvkcRWMIEcXyGfkr2HnFBJpSppDk0SJvTpG+KspMSBmXTHC4sopmlXJCk1OqiwDbb+/HLOk+YpTkAGofjn51817DmxN5yo6QEcufAwfJ+pRyVLUOxmbUc9DD8CJop8mDfKLrVaodpl8xLJahOtASqHggs2zeob0/pL+UEScOkLI7m/zI6Lr3LL/JksdQ=----ATTACHMENT:----NTQwMDYwMDkxOTYxMjkxMCAxMjcxNDkyNjE2NDQwMjYyIDM5MzkwODY2MDc1MzY4ODM=