diff options
author | Camil Staps | 2015-05-23 22:33:58 +0200 |
---|---|---|
committer | Camil Staps | 2015-05-23 22:33:58 +0200 |
commit | e33d2b854adac9c31a7e757aeed8c9421cd05660 (patch) | |
tree | 3f55c45a7966c0e590d2a3b4137deff9b88522ef /src | |
parent | readme (diff) |
Disable laravel session cookie
Diffstat (limited to 'src')
-rw-r--r-- | src/routes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes.php b/src/routes.php index def14d1..d424db8 100644 --- a/src/routes.php +++ b/src/routes.php @@ -1,5 +1,5 @@ <?php -Route::group(array('https'), function() use ($api) { +Route::group(['https'], function() use ($api) { $api->version('v1', ['protected' => false], function ($api) { @@ -57,4 +57,4 @@ Route::group(array('https'), function() use ($api) { }); -});
\ No newline at end of file +}); |