Skip to content

Commit

Permalink
fix(Comment): Initialize childrenCount as integer
Browse files Browse the repository at this point in the history
Signed-off-by: provokateurin <[email protected]>
  • Loading branch information
provokateurin authored and backportbot[bot] committed Sep 15, 2024
1 parent 124b565 commit 759dd70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Comments/Comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Comment implements IComment {
'id' => '',
'parentId' => '0',
'topmostParentId' => '0',
'childrenCount' => '0',
'childrenCount' => 0,
'message' => '',
'verb' => '',
'actorType' => '',
Expand Down

0 comments on commit 759dd70

Please sign in to comment.