芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/status.pulsehost.co.uk/vendor/minishlink/web-push/src/MessageSentReport.php
request = $request; $this->response = $response; $this->success = $success; $this->reason = $reason; } public function isSuccess(): bool { return $this->success; } public function setSuccess(bool $success): MessageSentReport { $this->success = $success; return $this; } public function getRequest(): RequestInterface { return $this->request; } public function setRequest(RequestInterface $request): MessageSentReport { $this->request = $request; return $this; } public function getResponse(): ?ResponseInterface { return $this->response; } public function setResponse(ResponseInterface $response): MessageSentReport { $this->response = $response; return $this; } public function getEndpoint(): string { return $this->request->getUri()->__toString(); } public function isSubscriptionExpired(): bool { if (!$this->response) { return false; } return \in_array($this->response->getStatusCode(), [404, 410], true); } public function getReason(): string { return $this->reason; } public function setReason(string $reason): MessageSentReport { $this->reason = $reason; return $this; } public function getRequestPayload(): string { return $this->request->getBody()->getContents(); } public function getResponseContent(): ?string { if (!$this->response) { return null; } return $this->response->getBody()->getContents(); } public function jsonSerialize(): array { return [ 'success' => $this->isSuccess(), 'expired' => $this->isSubscriptionExpired(), 'reason' => $this->reason, 'endpoint' => $this->getEndpoint(), 'payload' => $this->request->getBody()->getContents(), ]; } }