Skip to content

Commit f7d7e31

Browse files
committed
config file formatting
1 parent 1433de3 commit f7d7e31

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

config/app.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@
1313
'aliases' => Facade::defaultAliases()->merge([
1414
'TimeZoneHelper' => App\Helpers\TimeZoneHelper::class,
1515
])->toArray(),
16+
1617
];

config/services.php

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

33
return [
4+
45
'telegram-bot-api' => [
56
'token' => env('TELEGRAM_BOT_TOKEN'),
67
],
8+
79
];

config/speedtest.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,25 @@
33
use Carbon\Carbon;
44

55
return [
6-
/**
7-
* Build information
8-
*/
6+
97
'build_date' => Carbon::parse('2024-04-16'),
108

119
'build_version' => 'v0.19.0',
1210

1311
/**
14-
* General
12+
* General settings.
1513
*/
1614
'content_width' => env('CONTENT_WIDTH', '7xl'),
1715

1816
'public_dashboard' => env('PUBLIC_DASHBOARD', false),
1917

2018
/**
21-
* Polling
19+
* Polling settings.
2220
*/
2321
'dashboard_polling' => env('DASHBOARD_POLLING', '60s'),
2422

2523
'notification_polling' => env('NOTIFICATION_POLLING', '60s'),
2624

2725
'results_polling' => env('RESULTS_POLLING', null),
26+
2827
];

0 commit comments

Comments
 (0)