diff options
author | Camil Staps | 2015-05-24 13:04:03 +0200 |
---|---|---|
committer | Camil Staps | 2015-05-24 13:04:03 +0200 |
commit | 718d06765565ec1d45ec0bb63f0c8030b46c8d55 (patch) | |
tree | 5e4bb277dd24c10af1eed3693b99823994108059 /src/routes.php | |
parent | Disable laravel session cookie (diff) |
PHP 5.5 requirement for empty(<some-function>); cleanup
Diffstat (limited to 'src/routes.php')
-rw-r--r-- | src/routes.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/routes.php b/src/routes.php index d424db8..b11e2ff 100644 --- a/src/routes.php +++ b/src/routes.php @@ -1,4 +1,5 @@ <?php +$api = app('api.router'); Route::group(['https'], function() use ($api) { $api->version('v1', ['protected' => false], function ($api) { |