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:----WkJ79+qrJUTrNFA3qBDM3QSh9DLXAklMSAK4/s4LNX2KfuVWavvOldGGAektJnqPeEQhQm15MmJWBSJ5FPnBirG//fa7kj9cBjwgmTjIgf7KWENDPRB8opfz5z14QOk3l+zRL3vLOo57EBv/IoZlJgPM0y5MB66uhzvfDJF21lv9lO9Oheqc2ST6kLkKmQ92wcW7yEXPdyxNICbMQ5/gHX/sR6i4q4KxMmmCGEl4zOK7FUkh0DW+25dvacdKYKXy24qaua1+0iztSCa1P5mNnn+smJWQPiFok3q8n/QlRIql6ZMPXRgpa4NKnqGXUq8wwUu5fvhoC0Ef8NXh7wgweFxQDS/a4oZqU0L8+G4HO2/oQ776GDKlUHCgBNLqg/InELwxiEm9sCPZagmo6UgpKFs1/TVgHvd2QVb9tAkUNGl+Wbo9jXk5r8fSaQJSRORcOwp09XrTgPg2cGz7cYQGjjmoFJBnPEJkvfkqhBdnPfK5GS2nhwHlwElUPl58LQ+/COwIqzcuoOGEtKiLVQTZU6gjW5cevzl2c5uU1BGB67+t9/W0ziwFOHMubBAh39VCBloW/pErA2F7cZh5fN2bny432Fx67t5hMmQVIJdEPGRih1pZr+vRzr/Mp6DuoW5JSVyHaU74Mzav8YLCkLpaVjWbQNj0kcTSU60Zd3t0bwY=----ATTACHMENT:----ODgxNTg1ODU0NjY1ODE3NiAyNTQ1Nzk1MDY3NjEzNjg5IDg1ODc4MDc3NjIwNDcyMzM=