_status = $status; } public function body(?string $content = null): string|static { if ($content === null) { return $this->_body; } $this->_body = $content; return $this; } public function status(?int $code = null): int|static { if ($code === null) { return $this->_status; } $this->_status = $code; http_response_code($code); return $this; } }