add better comments to composer file.

This commit is contained in:
Taylor Otwell 2011-10-08 23:45:30 -05:00
parent 8ba0dfacc7
commit c9beefaa28
1 changed files with 5 additions and 2 deletions

View File

@ -37,16 +37,19 @@
| //
| })
|
| The "shared" composer is called for every view. This allows the
| convenient binding of global data or assets.
|
*/
'shared' => function($view)
{
//
// This composer is called for every view.
},
'home.index' => array('name' => 'home', function($view)
{
//
// This composer is called for the "home.index" view.
}),
);