Merge branch 'master' into develop

This commit is contained in:
Taylor Otwell
2012-06-21 11:38:50 -05:00
3 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ It is common to limit access to certain routes only to logged in users. In Larav
To protect a route, simply attach the **auth** filter:
Route::get('admin', array('before' => 'auth', function() {});
Route::get('admin', array('before' => 'auth', function() {}));
> **Note:** You are free to edit the **auth** filter however you like. A default implementation is located in **application/routes.php**.