Completed
Pull Request — master (#557)
by Daniel
03:47
created
app/Models/Microblog.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -214,9 +214,8 @@
 block discarded – undo
214 214
     }
215 215
 
216 216
     /**
217
-     * @param  \Illuminate\Database\Query\Builder $query
218 217
      * @param int|null $userId
219
-     * @return \Illuminate\Database\Query\Builder|$this
218
+     * @return Builder
220 219
      */
221 220
     public function scopeIncludeIsSubscribed(Builder $builder, ?int $userId): Builder
222 221
     {
Please login to merge, or discard this patch.
app/Repositories/Eloquent/TopicRepository.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -79,6 +79,9 @@
 block discarded – undo
79 79
         return $result;
80 80
     }
81 81
 
82
+    /**
83
+     * @param integer|null $userId
84
+     */
82 85
     private function getBuilder(?int $userId, string $guestId)
83 86
     {
84 87
         return $this
Please login to merge, or discard this patch.
app/Http/CustomRequest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 class CustomRequest extends Request
9 9
 {
10 10
     /**
11
-     * @return mixed
11
+     * @return string
12 12
      */
13 13
     public function browser()
14 14
     {
Please login to merge, or discard this patch.