|
@@ -174,11 +174,25 @@ class Response {
|
|
|
$response = new static($response);
|
|
|
}
|
|
|
|
|
|
- $response->render();
|
|
|
-
|
|
|
return $response;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Send the headers and content of the response to the browser.
|
|
|
+ *
|
|
|
+ * @return void
|
|
|
+ */
|
|
|
+ public function send()
|
|
|
+ {
|
|
|
+ $this->render();
|
|
|
+
|
|
|
+ $this->cookies();
|
|
|
+
|
|
|
+ $this->foundation->prepare(Request::foundation());
|
|
|
+
|
|
|
+ $this->foundation->send();
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Convert the content of the Response to a string and return it.
|
|
|
*
|
|
@@ -206,20 +220,6 @@ class Response {
|
|
|
return $this->content;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Send the headers and content of the response to the browser.
|
|
|
- *
|
|
|
- * @return void
|
|
|
- */
|
|
|
- public function send()
|
|
|
- {
|
|
|
- $this->cookies();
|
|
|
-
|
|
|
- $this->foundation->prepare(Request::foundation());
|
|
|
-
|
|
|
- $this->foundation->send();
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* Send all of the response headers to the browser.
|
|
|
*
|