Completed
Push — discuss ( 788d21...8a4993 )
by Fèvre
16:22
created
app/Markdown/Emoji/EmojiParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     /**
43 43
      * Get the characters that must be matched.
44 44
      *
45
-     * @return array
45
+     * @return string[]
46 46
      */
47 47
     public function getCharacters()
48 48
     {
Please login to merge, or discard this patch.
app/Markdown/TaskLists/TaskListsParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     /**
43 43
      * Get the characters that must be matched.
44 44
      *
45
-     * @return array
45
+     * @return string[]
46 46
      */
47 47
     public function getCharacters()
48 48
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/SocialiteController.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@
 block discarded – undo
180 180
 
181 181
             return redirect()
182 182
                 ->route('users.auth.login')
183
-                ->with('danger', "This {$driver} user is already registered !");
183
+                ->with('danger', "this {$driver} user is already registered !");
184 184
         }
185 185
 
186 186
         $validator = UserValidator::createWithProvider([
Please login to merge, or discard this patch.
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/Policies/DiscussConversationPolicy.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      * @param \Xetaravel\Models\User $user
16 16
      * @param string $ability
17 17
      *
18
-     * @return true|void
18
+     * @return boolean|null
19 19
      */
20 20
     public function before(User $user, string $ability)
21 21
     {
Please login to merge, or discard this patch.
app/Policies/DiscussPostPolicy.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      * @param \Xetaravel\Models\User $user
16 16
      * @param string $ability
17 17
      *
18
-     * @return true|void
18
+     * @return boolean|null
19 19
      */
20 20
     public function before(User $user, string $ability)
21 21
     {
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.
app/Http/Controllers/Discuss/PostController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,6 @@  discard block
 block discarded – undo
86 86
     /**
87 87
      * Handle a delete action for the post.
88 88
      *
89
-     * @param \Illuminate\Http\Request $request
90 89
      * @param int $id
91 90
      *
92 91
      * @return \Illuminate\Http\RedirectResponse
@@ -195,7 +194,7 @@  discard block
 block discarded – undo
195 194
      *
196 195
      * @param int $id
197 196
      *
198
-     * @return \Illuminate\Http\JsonResponse|\Illuminate\View\View
197
+     * @return \Symfony\Component\HttpFoundation\Response
199 198
      */
200 199
     public function editTemplate(int $id)
201 200
     {
Please login to merge, or discard this patch.