Completed
Push — discuss ( 031d9d...b903b2 )
by Fèvre
15:56
created
app/Models/Presenters/DiscussConversationPresenter.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
     /**
9 9
      * We must decrement the post count due to the first post being counted.
10 10
      *
11
-     * @param int $count The actual post count cache.
12 11
      *
13 12
      * @return int
14 13
      */
Please login to merge, or discard this patch.
app/Models/Repositories/CommentRepository.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
      * Create a new comment instance after a valid validation.
11 11
      *
12 12
      * @param array $data The data used to create the comment.
13
-     * @param \Xetaravel\Models\User $user The current user.
14 13
      *
15 14
      * @return \Xetaravel\Models\Comment
16 15
      */
Please login to merge, or discard this patch.
app/Http/Controllers/Discuss/ConversationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,6 +115,6 @@
 block discarded – undo
115 115
      */
116 116
     protected function getCurrentPage(Request $request): int
117 117
     {
118
-        return !is_null($request->get('page')) ? (int)$request->get('page') : 1;
118
+        return !is_null($request->get('page')) ? (int) $request->get('page') : 1;
119 119
     }
120 120
 }
Please login to merge, or discard this patch.