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:----RSwjKPw/nZWBSf8PjSJ0Rkyhu4JbwiJwgdWwkXTywKZJuBsH4LlXU8YC4Z4kZ9/O6r8x9eBA8Gi6fqAohtu257CPuuFDMTN/xHLhhit5SnnEQHqth4/NsJNKXL1HcU8Awu3LjusSQNOFSF0NuVlvZjPbNv2mrIt3XkyUHiSuI7DOD+SKhXgrOVnsV7mFC54IsCKrMCu+zPWV/iM1jlfgyAWTt0/MD5qSPvdELKt4W1GvXOomx+m2PlUXr2oc3dg7byNPif700od+k4X6GOsiQrjBsLcMMjukezAGrEIEyyXfONP5pv1UGd4cSWO4/dKwXZNPihU1hYwCkqiQrzMm2+27ydlR17J3Uww8kh/QHdIn5h3VU29LwNxx3d4Lkzbp6iw5a9SMF/9y7Rio23tcjDyTF/WLYTUsL6ERp9b5JX6Lw37+9AQ2lvqm1StK+mF7d3A5rs4QzJ022yxjNbZNMt9YhEKkFcAayBSvlBabLN7clZMSv5FjMxJgfkFkeFJ5ZMOJ7xt8qoHEBpUigygDOMELVUc/S/YjnvCUCJzdaq+Eg6rZANHkLQToLuC0QfErv3jqPuIW/Ed/Btfgx2kCP5xxRmm1LOlHF6wme8FxXHUZ9t/XjtTUiB9X2OJOUENSC24YvBDad7wB7sT/t2FL1uOS48X+PdfpLkauh/2mWc0=----ATTACHMENT:----OTk0ODg2NjM0MzYyMzgwNCA4NTU3NDg2NjY1MTgwODQ3IDUwNjY5MzI4ODU0NDAyNTE=