continued refactoring of view classes.

This commit is contained in:
Taylor Otwell
2011-08-29 19:27:02 -05:00
parent 15cde60794
commit 8229891d26
5 changed files with 43 additions and 11 deletions

View File

@@ -37,9 +37,9 @@ return array(
|
*/
'GET /' => function($application)
'GET /' => function($laravel)
{
return $application->view->make('home.index');
return $laravel->view->make('home.index');
},
);