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

Commit b174ffb

Browse files
authored
Merge pull request #467 from beyondcode/refactor/dashboard
[2.x] Refactoring dashboard
2 parents 9745ca1 + a9111ab commit b174ffb

File tree

13 files changed

+647
-436
lines changed

13 files changed

+647
-436
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@ end_of_line = lf
1111
insert_final_newline = true
1212
trim_trailing_whitespace = true
1313

14+
[*.blade.php]
15+
indent_size = 2
16+
1417
[*.md]
1518
trim_trailing_whitespace = false

config/websockets.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,13 @@
209209
| store them into an array and then store them into the database
210210
| on each interval.
211211
|
212+
| You can opt-in to avoid any statistics storage by setting the logger
213+
| to the built-in NullLogger.
214+
|
212215
*/
213216

214-
'logger' => BeyondCode\LaravelWebSockets\Statistics\Logger\HttpStatisticsLogger::class,
217+
'logger' => \BeyondCode\LaravelWebSockets\Statistics\Logger\HttpStatisticsLogger::class,
218+
// 'logger' => \BeyondCode\LaravelWebSockets\Statistics\Logger\NullStatisticsLogger::class,
215219

216220
/*
217221
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)