[smarcet] - fix shorthand notation

This commit is contained in:
smarcet 2013-11-04 17:42:11 -03:00
parent 801f47c2d9
commit 6a2e24663f
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
Route::group(["before"=>"ssl"],function(){
Route::group(array("before"=>"ssl"),function(){
Route::get('/', "HomeController@index");
Route::get('/discovery', "DiscoveryController@idp");
@ -38,7 +38,7 @@ Route::group(["before"=>"ssl"],function(){
Route::get('/accounts/user/login/cancel',"UserController@cancelLogin");
});
Route::group(["before" => array("ssl","auth")], function()
Route::group(array("before" => array("ssl","auth")), function()
{
Route::get('/accounts/user/consent',"UserController@getConsent");
Route::post('/accounts/user/consent',"UserController@postConsent");