Skip to content

Commit 6cbfb78

Browse files
Apply fixes from StyleCI (laravel#5356)
1 parent 0e7fd2b commit 6cbfb78

17 files changed

+0
-50
lines changed

config/app.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| Application Name
@@ -135,7 +134,6 @@
135134
*/
136135

137136
'providers' => [
138-
139137
/*
140138
* Laravel Framework Service Providers...
141139
*/
@@ -174,7 +172,6 @@
174172
// App\Providers\BroadcastServiceProvider::class,
175173
App\Providers\EventServiceProvider::class,
176174
App\Providers\RouteServiceProvider::class,
177-
178175
],
179176

180177
/*
@@ -189,7 +186,6 @@
189186
*/
190187

191188
'aliases' => [
192-
193189
'App' => Illuminate\Support\Facades\App::class,
194190
'Arr' => Illuminate\Support\Arr::class,
195191
'Artisan' => Illuminate\Support\Facades\Artisan::class,
@@ -225,7 +221,5 @@
225221
'URL' => Illuminate\Support\Facades\URL::class,
226222
'Validator' => Illuminate\Support\Facades\Validator::class,
227223
'View' => Illuminate\Support\Facades\View::class,
228-
229224
],
230-
231225
];

config/auth.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| Authentication Defaults
@@ -113,5 +112,4 @@
113112
*/
114113

115114
'password_timeout' => 10800,
116-
117115
];

config/broadcasting.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| Default Broadcaster
@@ -29,7 +28,6 @@
2928
*/
3029

3130
'connections' => [
32-
3331
'pusher' => [
3432
'driver' => 'pusher',
3533
'key' => env('PUSHER_APP_KEY'),
@@ -53,7 +51,5 @@
5351
'null' => [
5452
'driver' => 'null',
5553
],
56-
5754
],
58-
5955
];

config/cache.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
use Illuminate\Support\Str;
44

55
return [
6-
76
/*
87
|--------------------------------------------------------------------------
98
| Default Cache Store
@@ -32,7 +31,6 @@
3231
*/
3332

3433
'stores' => [
35-
3634
'apc' => [
3735
'driver' => 'apc',
3836
],
@@ -84,7 +82,6 @@
8482
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
8583
'endpoint' => env('DYNAMODB_ENDPOINT'),
8684
],
87-
8885
],
8986

9087
/*
@@ -99,5 +96,4 @@
9996
*/
10097

10198
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'),
102-
10399
];

config/database.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
use Illuminate\Support\Str;
44

55
return [
6-
76
/*
87
|--------------------------------------------------------------------------
98
| Default Database Connection Name
@@ -34,7 +33,6 @@
3433
*/
3534

3635
'connections' => [
37-
3836
'sqlite' => [
3937
'driver' => 'sqlite',
4038
'url' => env('DATABASE_URL'),
@@ -90,7 +88,6 @@
9088
'prefix' => '',
9189
'prefix_indexes' => true,
9290
],
93-
9491
],
9592

9693
/*
@@ -118,7 +115,6 @@
118115
*/
119116

120117
'redis' => [
121-
122118
'client' => env('REDIS_CLIENT', 'phpredis'),
123119

124120
'options' => [
@@ -141,7 +137,5 @@
141137
'port' => env('REDIS_PORT', '6379'),
142138
'database' => env('REDIS_CACHE_DB', '1'),
143139
],
144-
145140
],
146-
147141
];

config/filesystems.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| Default Filesystem Disk
@@ -42,7 +41,6 @@
4241
*/
4342

4443
'disks' => [
45-
4644
'local' => [
4745
'driver' => 'local',
4846
'root' => storage_path('app'),
@@ -64,7 +62,5 @@
6462
'url' => env('AWS_URL'),
6563
'endpoint' => env('AWS_ENDPOINT'),
6664
],
67-
6865
],
69-
7066
];

config/hashing.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| Default Hash Driver
@@ -48,5 +47,4 @@
4847
'threads' => 2,
4948
'time' => 2,
5049
],
51-
5250
];

config/logging.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
use Monolog\Handler\SyslogUdpHandler;
66

77
return [
8-
98
/*
109
|--------------------------------------------------------------------------
1110
| Default Log Channel
@@ -100,5 +99,4 @@
10099
'path' => storage_path('logs/laravel.log'),
101100
],
102101
],
103-
104102
];

config/mail.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| Mail Driver
@@ -132,5 +131,4 @@
132131
*/
133132

134133
'log_channel' => env('MAIL_LOG_CHANNEL'),
135-
136134
];

config/queue.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| Default Queue Connection Name
@@ -29,7 +28,6 @@
2928
*/
3029

3130
'connections' => [
32-
3331
'sync' => [
3432
'driver' => 'sync',
3533
],
@@ -65,7 +63,6 @@
6563
'retry_after' => 90,
6664
'block_for' => null,
6765
],
68-
6966
],
7067

7168
/*
@@ -84,5 +81,4 @@
8481
'database' => env('DB_CONNECTION', 'mysql'),
8582
'table' => 'failed_jobs',
8683
],
87-
8884
];

0 commit comments

Comments
 (0)