status; } public function body(): string { return $this->body; } public function isSuccess(): bool { return $this->status >= 200 && $this->status < 300; } /** * @throws JsonException */ public function json(): array { if ($this->body === '') { return []; } return json_decode($this->body, true, 512, JSON_THROW_ON_ERROR); } }