Skip to content

Commit

Permalink
Stats fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KyrneDev committed Jul 28, 2021
1 parent 17e08f1 commit dd5c447
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions BeyondCode/src/Models/WebSocketsStatisticsEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ public static function build(array $data)
$stat = new static();

$stat->app_id = $data['app_id'];
$stat->peak_connection_count = $data['peak_connection_count'];
$stat->websocket_message_count = $data['websocket_message_count'];
$stat->api_message_count = $data['api_message_count'];
$stat->peak_connection_count = $data['peak_connections_count'];
$stat->websocket_message_count = $data['websocket_messages_count'];
$stat->api_message_count = $data['api_messages_count'];
$stat->created_at = Carbon::now();
$stat->updated_at = Carbon::now();

Expand Down

0 comments on commit dd5c447

Please sign in to comment.