Skip to content
This repository was archived by the owner on Feb 20, 2025. It is now read-only.

Commit 7f95fb3

Browse files
andrey-helldarStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent c784c10 commit 7f95fb3

14 files changed

+0
-44
lines changed

tests/fixtures/source/app.php

-6
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,
@@ -226,7 +222,5 @@
226222
'URL' => Illuminate\Support\Facades\URL::class,
227223
'Validator' => Illuminate\Support\Facades\Validator::class,
228224
'View' => Illuminate\Support\Facades\View::class,
229-
230225
],
231-
232226
];

tests/fixtures/source/auth.php

-2
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
];

tests/fixtures/source/broadcasting.php

-4
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'),
@@ -58,7 +56,5 @@
5856
'null' => [
5957
'driver' => 'null',
6058
],
61-
6259
],
63-
6460
];

tests/fixtures/source/cache.php

-4
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
],
@@ -87,7 +85,6 @@
8785
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
8886
'endpoint' => env('DYNAMODB_ENDPOINT'),
8987
],
90-
9188
],
9289

9390
/*
@@ -102,5 +99,4 @@
10299
*/
103100

104101
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache'),
105-
106102
];

tests/fixtures/source/cors.php

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| Cross-Origin Resource Sharing (CORS) Configuration
@@ -30,5 +29,4 @@
3029
'max_age' => 0,
3130

3231
'supports_credentials' => false,
33-
3432
];

tests/fixtures/source/database.php

-6
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
'testing' => [
3937
'driver' => 'sqlite',
4038
'database' => ':memory:',
@@ -96,7 +94,6 @@
9694
'prefix' => '',
9795
'prefix_indexes' => true,
9896
],
99-
10097
],
10198

10299
/*
@@ -124,7 +121,6 @@
124121
*/
125122

126123
'redis' => [
127-
128124
'client' => env('REDIS_CLIENT', 'phpredis'),
129125

130126
'options' => [
@@ -147,7 +143,5 @@
147143
'port' => env('REDIS_PORT', '6379'),
148144
'database' => env('REDIS_CACHE_DB', '1'),
149145
],
150-
151146
],
152-
153147
];

tests/fixtures/source/filesystems.php

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

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

3130
'disks' => [
32-
3331
'local' => [
3432
'driver' => 'local',
3533
'root' => storage_path('app'),
@@ -51,7 +49,6 @@
5149
'url' => env('AWS_URL'),
5250
'endpoint' => env('AWS_ENDPOINT'),
5351
],
54-
5552
],
5653

5754
/*
@@ -68,5 +65,4 @@
6865
'links' => [
6966
public_path('storage') => storage_path('app/public'),
7067
],
71-
7268
];

tests/fixtures/source/hashing.php

-2
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
];

tests/fixtures/source/logging.php

-2
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
];

tests/fixtures/source/mail.php

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| Default Mailer
@@ -106,5 +105,4 @@
106105
resource_path('views/vendor/mail'),
107106
],
108107
],
109-
110108
];

tests/fixtures/source/queue.php

-4
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
],
@@ -66,7 +64,6 @@
6664
'retry_after' => 90,
6765
'block_for' => null,
6866
],
69-
7067
],
7168

7269
/*
@@ -85,5 +82,4 @@
8582
'database' => env('DB_CONNECTION', 'mysql'),
8683
'table' => 'failed_jobs',
8784
],
88-
8985
];

tests/fixtures/source/services.php

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| Third Party Services
@@ -29,5 +28,4 @@
2928
'secret' => env('AWS_SECRET_ACCESS_KEY'),
3029
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
3130
],
32-
3331
];

tests/fixtures/source/session.php

-2
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 Session Driver
@@ -197,5 +196,4 @@
197196
*/
198197

199198
'same_site' => 'lax',
200-
201199
];

tests/fixtures/source/view.php

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
return [
4-
54
/*
65
|--------------------------------------------------------------------------
76
| View Storage Paths
@@ -32,5 +31,4 @@
3231
'VIEW_COMPILED_PATH',
3332
realpath(storage_path('framework/views'))
3433
),
35-
3634
];

0 commit comments

Comments
 (0)