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:----ZuY7mANfcx3hSuZlu8RRT6XPUS+F1rzDl+y5CzrBPGwtNZa4+xXWyaGhzOCRra69KjF19IpUSrEjP3kgeYLrksUzVSZismpTMlbCvxk9osIvNJcfwy+monEFthVO25MFi8BgJq9ZaLmyckotpLeEaTyJ9hhj70FvkfD3aOK2phLGLBW9XaQwcml+Fur0YRb9RaBohWTlCM1Yc+C6hq/OxTnMbQ7UmtSbipSfKM4y329Q13iA0339FAbYWALzFIuOMbAkFugQ6bLw8YRw8HfRtfjJdIXK/cDXJJsRX9KuytQPXyS7pmGcfMKGgeU9DEL6eqOI87hMQBjQKo9yrT6x6hp3YonhxRkFtbVpHQueSK9CKxhft20Bb1HQj2Aw57KfQOuHldDq6gCZwiKqXYO8LznN6W3U1c1eJutTKEgfpZ11TyZ5sWVC+MX9eyJvQ5xK7Cgf2RovSFMKt+O3YdbTOgXQpijD0rV5gJ970v78nOinZZA8m5awOwiC2fZpAb/zcNI0VDTh0m3H1hOKzBEf7XnUl/whQLie9cYojef0Fb8RFYKZYCFGlUMITH1WL/0H9sE2A8ie6gKYKIDaO0/rNiU01B139SMekVQu+NZL/BvhmdruNP0ZVI9otUrcicq6p1Ocxv1d9aaSz+5EHtPgX8LNoW18/6epV2JJ4iMKuYE=----ATTACHMENT:----MTc4NTEwNTM3Nzg0NDgwMyA3MzI0MjE4NzE2NjA0NjE0IDIyMDk3ODI1NDQyOTU4NTg=