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:----trc6MfxzMi+OIR2ok7AvNM/TirGwNvvjxnRL6PXWuZjnYT19ryPus58SesyJjGycn/3adfa53CI8cSAuskuaEGV9zLxZ7XulL+ouB2LuQnOH2LRmenVji9+9tJcYFZIpAgVZMkcicEgFypVVXBXyWrOzSMpuIYs8/kS3IRMhLaOob3dbRNYQik+Teg3M6qXA+DCS3eJRbd0aOgVzWuZt+rrSdGvDf/UxTWM0u5cG+hr+x8Hb9MxocdOOP1XFmoi4n6OSjAXh+R2/Kcf20sKu3/R+w4vEFS4KJeuAKusZHrMf8YYct46RZNPesVyWOVJiDSOSoUqsAO4JGGaV9B2RDp6oE9hYEk27oI9ZNT5K0AlLqkItxIrbgdsnmjsFgbo+Xi74rnJ+PU4TgW2zP7ffhZn+wNocAm7zTFVo9rrpqiXN2JQSjSk4uIkWdPs0nnIhSoi8rFnhUmCa8Qi/el+aX6/ibDqZll15bECCbBd1EZdBRMDUTdxBBB8Zpgi/jK3mIt/qU3JAJ6tH+H9RwoDlqbuNqpMQOZ0FTbMFRcULDQ4uvK6cnYMbIIDn0qInPqEeAfUnt8yA4JTc8xHjpnK2RKeroxfigk3Is+fK8A+fAdVetZwBiFOR4JDBxiPgMLDaSXNkGstFN6weCK8Ub7Hvl6E+zU1eigO9C/Knz3+Zmvo=----ATTACHMENT:----NDYyNTM5NTc3NjA3OTQ5NiA4MjUxMTc0ODY2Mjk0MjkzIDQ1OTE0MDc2MzczNDk4NDI=