Commit 51cfd460 authored by Viral Solani's avatar Viral Solani Committed by StyleCI Bot

Apply fixes from StyleCI

parent 18da374e
...@@ -36,7 +36,7 @@ return [ ...@@ -36,7 +36,7 @@ return [
'driver' => 'file', // redis, file, pdo, custom 'driver' => 'file', // redis, file, pdo, custom
'path' => storage_path('debugbar'), // For file driver 'path' => storage_path('debugbar'), // For file driver
'connection' => null, // Leave null for default connection (Redis/PDO) 'connection' => null, // Leave null for default connection (Redis/PDO)
'provider' => '' // Instance of StorageInterface for custom driver 'provider' => '', // Instance of StorageInterface for custom driver
], ],
/* /*
...@@ -148,19 +148,19 @@ return [ ...@@ -148,19 +148,19 @@ return [
'hints' => true, // Show hints for common mistakes 'hints' => true, // Show hints for common mistakes
], ],
'mail' => [ 'mail' => [
'full_log' => false 'full_log' => false,
], ],
'views' => [ 'views' => [
'data' => false, //Note: Can slow down the application, because the data can be quite large.. 'data' => false, //Note: Can slow down the application, because the data can be quite large..
], ],
'route' => [ 'route' => [
'label' => true // show complete route on bar 'label' => true, // show complete route on bar
], ],
'logs' => [ 'logs' => [
'file' => null 'file' => null,
], ],
'cache' => [ 'cache' => [
'values' => true // collect cache values 'values' => true, // collect cache values
], ],
], ],
......
...@@ -22,7 +22,6 @@ return [ ...@@ -22,7 +22,6 @@ return [
'view_template_path' => base_path('vendor/xethron/laravel-4-generators/src/Way/Generators/templates/view.txt'), 'view_template_path' => base_path('vendor/xethron/laravel-4-generators/src/Way/Generators/templates/view.txt'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Where the generated files will be saved... | Where the generated files will be saved...
...@@ -37,6 +36,6 @@ return [ ...@@ -37,6 +36,6 @@ return [
'seed_target_path' => base_path('database/seeds'), 'seed_target_path' => base_path('database/seeds'),
'view_target_path' => base_path('resources/views') 'view_target_path' => base_path('resources/views'),
]; ];
...@@ -32,13 +32,13 @@ return [ ...@@ -32,13 +32,13 @@ return [
* Or, to trust all proxies that connect * Or, to trust all proxies that connect
* directly to your server, uncomment this: * directly to your server, uncomment this:
*/ */
# 'proxies' => '*', // 'proxies' => '*',
/* /*
* Or, to trust ALL proxies, including those that * Or, to trust ALL proxies, including those that
* are in a chain of forwarding, uncomment this: * are in a chain of forwarding, uncomment this:
*/ */
# 'proxies' => '**', // 'proxies' => '**',
/* /*
* Default Header Names * Default Header Names
...@@ -67,5 +67,5 @@ return [ ...@@ -67,5 +67,5 @@ return [
Illuminate\Http\Request::HEADER_CLIENT_HOST => 'X_FORWARDED_HOST', Illuminate\Http\Request::HEADER_CLIENT_HOST => 'X_FORWARDED_HOST',
Illuminate\Http\Request::HEADER_CLIENT_PROTO => 'X_FORWARDED_PROTO', Illuminate\Http\Request::HEADER_CLIENT_PROTO => 'X_FORWARDED_PROTO',
Illuminate\Http\Request::HEADER_CLIENT_PORT => 'X_FORWARDED_PORT', Illuminate\Http\Request::HEADER_CLIENT_PORT => 'X_FORWARDED_PORT',
] ],
]; ];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment