|
@@ -93,18 +93,6 @@ class View_Factory {
|
|
|
$this->composer = $composer;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Create a new view instance.
|
|
|
- *
|
|
|
- * @param string $view
|
|
|
- * @param array $data
|
|
|
- * @return View
|
|
|
- */
|
|
|
- public function make($view, $data = array())
|
|
|
- {
|
|
|
- return new View($view, $data, $this->path($view), $this->composer, $this);
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* Create a new view instance from a view name.
|
|
|
*
|
|
@@ -212,18 +200,6 @@ class View {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Create a new view instance.
|
|
|
- *
|
|
|
- * @param string $view
|
|
|
- * @param array $data
|
|
|
- * @return View
|
|
|
- */
|
|
|
- public static function make($view, $data = array())
|
|
|
- {
|
|
|
- return IoC::container()->resolve('laravel.view')->make($view, $data);
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* Get the evaluated string content of the view.
|
|
|
*
|