Commit 3bf85e03 authored by Taylor Otwell's avatar Taylor Otwell

Refactor the view class.

parent 6278daca
...@@ -198,7 +198,10 @@ class View { ...@@ -198,7 +198,10 @@ class View {
// evaluate any sub-views or responses that are present. // evaluate any sub-views or responses that are present.
foreach ($this->data as &$data) foreach ($this->data as &$data)
{ {
if ($data instanceof View or $data instanceof Response) $data = (string) $data; if ($data instanceof View or $data instanceof Response)
{
$data = (string) $data;
}
} }
ob_start() and extract($this->data, EXTR_SKIP); ob_start() and extract($this->data, EXTR_SKIP);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment