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

[2.x] Refactoring dashboard #467

Merged
merged 6 commits into from
Aug 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@ end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.blade.php]
indent_size = 2

[*.md]
trim_trailing_whitespace = false
6 changes: 5 additions & 1 deletion config/websockets.php
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,13 @@
| store them into an array and then store them into the database
| on each interval.
|
| You can opt-in to avoid any statistics storage by setting the logger
| to the built-in NullLogger.
|
*/

'logger' => BeyondCode\LaravelWebSockets\Statistics\Logger\HttpStatisticsLogger::class,
'logger' => \BeyondCode\LaravelWebSockets\Statistics\Logger\HttpStatisticsLogger::class,
// 'logger' => \BeyondCode\LaravelWebSockets\Statistics\Logger\NullStatisticsLogger::class,

/*
|--------------------------------------------------------------------------
Expand Down
Loading