Skip to content

Commit b6045bb

Browse files
committed
style: formattazione stile codice
1 parent fb3a73c commit b6045bb

54 files changed

Lines changed: 429 additions & 416 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

‎bootstrap/app.php‎

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@
1212
health: '/up',
1313
)
1414
->withMiddleware(function (Middleware $middleware): void {
15-
//
1615
})
1716
->withExceptions(function (Exceptions $exceptions): void {
18-
//
1917
})->create()
20-
->useAppPath(realpath(__DIR__ . '/../src'))
21-
->useStoragePath(realpath(__DIR__ . '/../files/temp'));
18+
->useAppPath(realpath(__DIR__.'/../src'))
19+
->useStoragePath(realpath(__DIR__.'/../files/temp'));

‎config/api-platform.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'domain' => null,
2727
// Global middleware applied to every API Platform routes
2828
'middleware' => [
29-
\Middlewares\APIAuthMiddleware::class,
29+
Middlewares\APIAuthMiddleware::class,
3030
],
3131
],
3232

‎config/app.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
| Application Name
@@ -122,5 +121,4 @@
122121
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
123122
'store' => env('APP_MAINTENANCE_STORE', 'database'),
124123
],
125-
126124
];

‎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
@@ -112,5 +111,4 @@
112111
*/
113112

114113
'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
115-
116114
];

‎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
'array' => [
3735
'driver' => 'array',
3836
'serialize' => false,
@@ -43,7 +41,6 @@
4341
'path' => storage_path('framework/cache/data'),
4442
'lock_path' => storage_path('framework/cache/data'),
4543
],
46-
4744
],
4845

4946
/*
@@ -58,5 +55,4 @@
5855
*/
5956

6057
'prefix' => env('CACHE_PREFIX', Str::slug((string) env('APP_NAME', 'laravel')).'-cache-'),
61-
6258
];

‎config/database.php‎

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
<?php
22

3-
use Illuminate\Support\Str;
4-
53
App::definePaths(__DIR__.'/..');
64

75
$config = App::getConfig();
86

97
return [
10-
118
/*
129
|--------------------------------------------------------------------------
1310
| Default Database Connection Name
@@ -34,7 +31,6 @@
3431
*/
3532

3633
'connections' => [
37-
3834
'mysql' => [
3935
'driver' => 'mysql',
4036
'host' => $config['db_host'],
@@ -70,4 +66,4 @@
7066
'table' => 'migrations',
7167
'update_date_on_publish' => true,
7268
],
73-
];
69+
];

‎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
@@ -29,7 +28,6 @@
2928
*/
3029

3130
'disks' => [
32-
3331
'local' => [
3432
'driver' => 'local',
3533
'root' => storage_path('app/private'),
@@ -59,7 +57,6 @@
5957
'throw' => false,
6058
'report' => false,
6159
],
62-
6360
],
6461

6562
/*
@@ -76,5 +73,4 @@
7673
'links' => [
7774
public_path('storage') => storage_path('app/public'),
7875
],
79-
8076
];

‎config/logging.php‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use Monolog\Processor\PsrLogMessageProcessor;
77

88
return [
9-
109
/*
1110
|--------------------------------------------------------------------------
1211
| Default Log Channel
@@ -51,7 +50,6 @@
5150
*/
5251

5352
'channels' => [
54-
5553
'stack' => [
5654
'driver' => 'stack',
5755
'channels' => explode(',', (string) env('LOG_STACK', 'single')),
@@ -126,7 +124,5 @@
126124
'emergency' => [
127125
'path' => storage_path('logs/laravel.log'),
128126
],
129-
130127
],
131-
132128
];

‎config/mail.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 Mailer
@@ -36,7 +35,6 @@
3635
*/
3736

3837
'mailers' => [
39-
4038
'smtp' => [
4139
'transport' => 'smtp',
4240
'scheme' => env('MAIL_SCHEME'),
@@ -96,7 +94,6 @@
9694
],
9795
'retry_after' => 60,
9896
],
99-
10097
],
10198

10299
/*
@@ -114,5 +111,4 @@
114111
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
115112
'name' => env('MAIL_FROM_NAME', 'Example'),
116113
],
117-
118114
];

‎config/osm.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
$config = App::getConfig();
66

7-
return $config;
7+
return $config;

0 commit comments

Comments
 (0)