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:----n2VIaVwczcG0/azzlZS8IdcbksDQ2lhrYZESKENydRLShXYyhNXV/ME8YOIuYec30QJhqHiF6elnjThtNJtODtKwnWyFVzhCUsGWu5wDWjd+83rEaDPfRNuCsGnjpdxAL9YDg1btSKWvXnexUZeb/nOBtLTMooyCeM259Ukjvr2OPVmQHJcd9HxSmq0IF/nLt4ZVQc+JdA9REA/f5sCMi0bLP8k0EAGQVUbKLZr3tBYNrXfvLuS9HTqEa7x0ySAEpnmcS4VB5zgvE/KFmWnn09hg6BzO7cY4KUBUbJK0yzvEqmxugiR/t5mCEBaQdJpscIdKBSiBS7eytb1tV6hSI6E19/jPHmTUV9W8DAhddxnANRWfWtegaQxem+ZyU6a9om/Xp5chVp6AmoJCJpTnMeLEpRHtBrXy0RQFcThh0njB7tlZGN/0Usq7fHJcxJwBNJnxXR9Mx3fqcih8M9nFXJwZphEambA5BotTSZ/a21Cu+9Qeh+IqpKTVX/FjPCZPnL+9wIDYzYlbmXuCaN7KIlPy0ygM11RZV3Q568hSkZWF1Z/q7DpSDi3PFhWr88MmJ5pBcn+we5OHpMVZ1YEMQTlLS6IB2cMi2kJzQSvZpqeCurXt1XAb1uT7Elz+ftidY+MUXZXC6edeEAEW2YT81lqLLgFnIwIP0a+j4+CMn+s=----ATTACHMENT:----Mjc2NDAxODA5MjczNzYzNiAyNzE4ODc5NzExNjU3ODE1IDgzMzExNzYzMDYxODA1Mjc=