diff --git a/application/composers.php b/application/composers.php index 777cf3da..5acd4d6c 100644 --- a/application/composers.php +++ b/application/composers.php @@ -37,16 +37,19 @@ return array( | // | }) | + | 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. }), ); \ No newline at end of file