Skip to content

Commit

Permalink
Fix deprecation notice on sum_comments variable
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbennett committed Jan 14, 2024
1 parent 83af42d commit d92ab19
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Models/User/View.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class View extends \BNETDocs\Models\ActiveUser implements \JsonSerializable
public $news_posts;
public $packets;
public $servers;
public $sum_comments;
public $sum_documents;
public $sum_news_posts;
public $sum_packets;
Expand All @@ -25,6 +26,7 @@ public function jsonSerialize(): mixed
'news_posts' => $this->news_posts,
'packets' => $this->packets,
'servers' => $this->servers,
'sum_comments' => $this->sum_comments,
'sum_documents' => $this->sum_documents,
'sum_news_posts' => $this->sum_news_posts,
'sum_packets' => $this->sum_packets,
Expand Down

0 comments on commit d92ab19

Please sign in to comment.