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:----ZZIRMDvRHI5JQ+J3+ikKhrZOWJewFUZN4PpCX9ltQBK4XweJeMhCMCpOx7AQmGCRXWXmjl6GqaD/RQzfIpuTcHJTWu/apfdXS+MYAYYRgV09VNIF0QpKVAd7U3GVemsmvk+XIYvBvvDwEEbtMYvHh0BrgsHVrlpdsku84YMcRHMUoy2SzztDWrJ6rW6WWqMdBKNOJYcdkqy8SoEI1trs9ePzilGytzkCrWjsjZCQn4HRm8pYTMxXPRbPLM30vG6Ks3g0g2Go1DZvaiwctXISVdtB4B6HZWbJ2pUKS0R5cwLleJSa8JhwewtlMMvcoAySeQnus3PGoK2UFY7R7cnK8ZkuCsbpM8wCdTejeYe+TKKFRFgMj3xPK78g/i84ERxim4FaLh05sk9dtcwG/f9P8AZChVTn7rXQLfvUVbAyqSLHkhPSVjCfjf+rRU/3H/cS11RSWIVc1yaR8Zko0+RPc46REjK317KCI/mHVXXhnrf3eB+H8yogC2+1/9YA4V570Yq/1z8Bcplsg55paEU+o1TU9/Ge3Eoc2vXkj4nK5SyqAPYpgs+TvgLklaL9JShnWRsNCnY1vOR31J3DWG3Rym4kiIQQwRpYY6a0FlwNEsh64KZ4ofHhyvn+zSB8tBKD7Vru8CJ1dEskjnefhY4wOX8DwD1E8cOlJ2gjYCoK4IE=----ATTACHMENT:----ODY2MzE4NjYwMDQ4OTcyNSA2MTQ4NjgxNDc0NjU4MTAgNjU0NTE5MTc0MzY1MDY0OA==