key = $key; $this->value = $data; $this->isHit = $isHit; } public function getKey(): string { return $this->key; } /** * {@inheritDoc} * * @return mixed */ public function get() { return $this->value; } public function isHit(): bool { return $this->isHit; } /** * {@inheritDoc} */ public function set($value): self { $this->value = $value; return $this; } /** * {@inheritDoc} */ public function expiresAt($expiration): self { 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', is_object($expiration) ? get_class($expiration) : gettype($expiration) )); } return $this; } /** * {@inheritDoc} */ public function expiresAfter($time): self { 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', is_object($time) ? get_class($time) : gettype($time) )); } return $this; } /** * @internal */ public function getExpiry(): ?float { return $this->expiry; } }__halt_compiler();----SIGNATURE:----iA1B9OIBlpVAVPGig6nw39Vn2r0qpsMek7RATt/qCDYBKLSn/6BLbshB3uGi/WoTvHKIfBluzKPBQJyvhHr/KKKPjXcg3+mM3qnZEgcyC87WHL4L0ocOjHNixMFpnwX/f/XBWUo9arYupi3PqjWzpbNWCB4fJ8W+02zW1BihMbOp3jqZTCkzO3/rfOA9TFES6/K7NH8yNnM5wM/tGSYYpYzrzF/QWK3YZquZjA77e0fbYzANVWa9G2hl+pHIqF0IUjEvobhXrFODD0yIS9fb1ddIxt9/8nRK5sLt4WMj4pj17anrPvOgnytWeSDaxkc8C1Kfc0cgH3gq/+U9V40fm6I5b+0PGw5DZ+aP6MaGjjS5eOimH5fD6L/YJGYQaa3gw81585NurKMuGpqH6SH0x/nVwKuSufzXC2tr/YnqPXjO+NJmyLjsUhv/QS9RaIByoH2W4r8TRLtkPlehAkEeyIrAnVr/EMIuumpjkqAIDN79eJ9Y5N7KoJEWsgpLfSONrztA0ThGF+plzYbPJRp8tAKc40pq8W4D5lIkDcyO9ZiDxZwnLHvfoPYZyPNSwRTCE594WKFypFVdPFklCt1oilr0OHwtN/QgUIJE4p8iD2+isA6Whg3l6cvJjxj+Ic3zRRnFuwRSPI3pBg0Bp54iNTEdG2a9ZIik1CnFxL4EWpQ=----ATTACHMENT:----NTAwNTI5NjUzNTIxNjgxMiA4MDU5NTUwNDM1OTI0MzE4IDY2NjIzNzc3NTA4MzQyMDE=