Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Sep 12, 2023
1 parent 9160a73 commit ea8ea9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/UserPostsFeedController.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ protected function getFeedContent(Request $request): array
->where('user_id', $user->id)
->limit($this->getSetting('entries-count'))
->orderBy('created_at', 'desc')
->setModel(new CommentPost)
->setModel(new CommentPost())
->get();

$entries = [];
Expand Down

0 comments on commit ea8ea9c

Please sign in to comment.