Skip to content

Commit 407b6b8

Browse files
Revert "Apply fixes from StyleCI (laravel#5356)" (laravel#5357)
This reverts commit 6cbfb78.
1 parent 6cbfb78 commit 407b6b8

17 files changed

+50
-0
lines changed

config/app.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Application Name
@@ -134,6 +135,7 @@
134135
*/
135136

136137
'providers' => [
138+
137139
/*
138140
* Laravel Framework Service Providers...
139141
*/
@@ -172,6 +174,7 @@
172174
// App\Providers\BroadcastServiceProvider::class,
173175
App\Providers\EventServiceProvider::class,
174176
App\Providers\RouteServiceProvider::class,
177+
175178
],
176179

177180
/*
@@ -186,6 +189,7 @@
186189
*/
187190

188191
'aliases' => [
192+
189193
'App' => Illuminate\Support\Facades\App::class,
190194
'Arr' => Illuminate\Support\Arr::class,
191195
'Artisan' => Illuminate\Support\Facades\Artisan::class,
@@ -221,5 +225,7 @@
221225
'URL' => Illuminate\Support\Facades\URL::class,
222226
'Validator' => Illuminate\Support\Facades\Validator::class,
223227
'View' => Illuminate\Support\Facades\View::class,
228+
224229
],
230+
225231
];

config/auth.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Authentication Defaults
@@ -112,4 +113,5 @@
112113
*/
113114

114115
'password_timeout' => 10800,
116+
115117
];

config/broadcasting.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Default Broadcaster
@@ -28,6 +29,7 @@
2829
*/
2930

3031
'connections' => [
32+
3133
'pusher' => [
3234
'driver' => 'pusher',
3335
'key' => env('PUSHER_APP_KEY'),
@@ -51,5 +53,7 @@
5153
'null' => [
5254
'driver' => 'null',
5355
],
56+
5457
],
58+
5559
];

config/cache.php

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

55
return [
6+
67
/*
78
|--------------------------------------------------------------------------
89
| Default Cache Store
@@ -31,6 +32,7 @@
3132
*/
3233

3334
'stores' => [
35+
3436
'apc' => [
3537
'driver' => 'apc',
3638
],
@@ -82,6 +84,7 @@
8284
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
8385
'endpoint' => env('DYNAMODB_ENDPOINT'),
8486
],
87+
8588
],
8689

8790
/*
@@ -96,4 +99,5 @@
9699
*/
97100

98101
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'),
102+
99103
];

config/database.php

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

55
return [
6+
67
/*
78
|--------------------------------------------------------------------------
89
| Default Database Connection Name
@@ -33,6 +34,7 @@
3334
*/
3435

3536
'connections' => [
37+
3638
'sqlite' => [
3739
'driver' => 'sqlite',
3840
'url' => env('DATABASE_URL'),
@@ -88,6 +90,7 @@
8890
'prefix' => '',
8991
'prefix_indexes' => true,
9092
],
93+
9194
],
9295

9396
/*
@@ -115,6 +118,7 @@
115118
*/
116119

117120
'redis' => [
121+
118122
'client' => env('REDIS_CLIENT', 'phpredis'),
119123

120124
'options' => [
@@ -137,5 +141,7 @@
137141
'port' => env('REDIS_PORT', '6379'),
138142
'database' => env('REDIS_CACHE_DB', '1'),
139143
],
144+
140145
],
146+
141147
];

config/filesystems.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Default Filesystem Disk
@@ -41,6 +42,7 @@
4142
*/
4243

4344
'disks' => [
45+
4446
'local' => [
4547
'driver' => 'local',
4648
'root' => storage_path('app'),
@@ -62,5 +64,7 @@
6264
'url' => env('AWS_URL'),
6365
'endpoint' => env('AWS_ENDPOINT'),
6466
],
67+
6568
],
69+
6670
];

config/hashing.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Default Hash Driver
@@ -47,4 +48,5 @@
4748
'threads' => 2,
4849
'time' => 2,
4950
],
51+
5052
];

config/logging.php

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

77
return [
8+
89
/*
910
|--------------------------------------------------------------------------
1011
| Default Log Channel
@@ -99,4 +100,5 @@
99100
'path' => storage_path('logs/laravel.log'),
100101
],
101102
],
103+
102104
];

config/mail.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Mail Driver
@@ -131,4 +132,5 @@
131132
*/
132133

133134
'log_channel' => env('MAIL_LOG_CHANNEL'),
135+
134136
];

config/queue.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Default Queue Connection Name
@@ -28,6 +29,7 @@
2829
*/
2930

3031
'connections' => [
32+
3133
'sync' => [
3234
'driver' => 'sync',
3335
],
@@ -63,6 +65,7 @@
6365
'retry_after' => 90,
6466
'block_for' => null,
6567
],
68+
6669
],
6770

6871
/*
@@ -81,4 +84,5 @@
8184
'database' => env('DB_CONNECTION', 'mysql'),
8285
'table' => 'failed_jobs',
8386
],
87+
8488
];

config/services.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Third Party Services
@@ -28,4 +29,5 @@
2829
'secret' => env('AWS_SECRET_ACCESS_KEY'),
2930
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
3031
],
32+
3133
];

config/session.php

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

55
return [
6+
67
/*
78
|--------------------------------------------------------------------------
89
| Default Session Driver
@@ -194,4 +195,5 @@
194195
*/
195196

196197
'same_site' => null,
198+
197199
];

config/view.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| View Storage Paths
@@ -31,4 +32,5 @@
3132
'VIEW_COMPILED_PATH',
3233
realpath(storage_path('framework/views'))
3334
),
35+
3436
];

resources/lang/en/auth.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Authentication Language Lines
@@ -14,4 +15,5 @@
1415

1516
'failed' => 'These credentials do not match our records.',
1617
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
18+
1719
];

resources/lang/en/pagination.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Pagination Language Lines
@@ -14,4 +15,5 @@
1415

1516
'previous' => '&laquo; Previous',
1617
'next' => 'Next &raquo;',
18+
1719
];

resources/lang/en/passwords.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Password Reset Language Lines
@@ -17,4 +18,5 @@
1718
'throttled' => 'Please wait before retrying.',
1819
'token' => 'This password reset token is invalid.',
1920
'user' => "We can't find a user with that e-mail address.",
21+
2022
];

resources/lang/en/validation.php

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

33
return [
4+
45
/*
56
|--------------------------------------------------------------------------
67
| Validation Language Lines
@@ -146,4 +147,5 @@
146147
*/
147148

148149
'attributes' => [],
150+
149151
];

0 commit comments

Comments
 (0)