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:----j7FXl6iuZzxkzBWCJLPG+5Cn74kySPu2Tosz6rzm92JQWAibS32sK37qWVDfjBw0o8XiF4DIm3qdrWnqqxCvvcSH40VxHQVH82mIIApw8j0JMxz3LYjo6i7Xp3MylTtXTxlV4TaYkZMTr2H4VWRpY9hhsq0GH9AnEdfY7Pwjx28hi/dADuxnbdi7GeEqCmr8yKapCIfC4OL4YNC6vCRLYseTIoHNOzLFcCTr6JbLfcPIH/2Xd+kO+RHgt9XRcrPh8wgdpzQyHUvxTpQ96LkhwL65yETmwynhGTnQ6Uy2xivB4zfiH49yi8ZUDT9fWf5BFwTuiaMnQQVTTRcMo/nrdmcridY2UCv5uAO6uG6/YkWgCS9f5WF+LX0NiN48chsayxB+i77vODdCmbs1aZa8ZRQQ8Ihja9jOaq8vK2ZH2mROGymTxUrgEj6uu+J/34t2wqL5q2g7QswLVReDv/WWLnVAtXBSnJoym4/F62+EOlSAA1kpBdxzlG6Jh4mh28dScFDwPJYKZc/4ld6qGzofP0euhtO2n16fwiF9bpmViGunTzHoS2p9q6Ws0pMNyCfqJAL/I/W3ScewhdJlIrO0QBwOKi7PSdKhxZx+PTnj+cu7lT224biGJH4I8YFLjZNO2cVZ9oAB+1RSWRls2FXX+2K2d0K2MJgGtALCJbp3Nl0=----ATTACHMENT:----NDA4MjA3NzU4OTI0NDAyIDExMzQ3NTU5Nzk2ODQwMzUgNTU5MDg3NjIxMTg3NDQ2MA==