Remove View::$last.
This commit is contained in:
parent
dc49a4aaeb
commit
c54173bc40
|
@ -16,13 +16,6 @@ class View {
|
|||
*/
|
||||
public $data = array();
|
||||
|
||||
/**
|
||||
* The name of last rendered view.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public static $last;
|
||||
|
||||
/**
|
||||
* Create a new view instance.
|
||||
*
|
||||
|
@ -55,8 +48,6 @@ public static function make($view, $data = array())
|
|||
*/
|
||||
public function get()
|
||||
{
|
||||
static::$last = $this->view;
|
||||
|
||||
// Get the evaluated content of all of the sub-views.
|
||||
foreach ($this->data as &$data)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue