Completed
Branch 2.1 (3617ab)
by Adam
09:03
created
app/Services/LogViewer/LogViewer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      * @param mixed $value
35 35
      * @param array $parameters
36 36
      * @param \Illuminate\Validation\Validator $validator
37
-     * @return bool
37
+     * @return integer
38 38
      */
39 39
     public function validateTag($attribute, $value, $parameters, $validator)
40 40
     {
Please login to merge, or discard this patch.
app/Models/Searchable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     /**
18 18
      * Index data in elasticsearch
19 19
      *
20
-     * @return mixed
20
+     * @return callable
21 21
      */
22 22
     public function putToIndex()
23 23
     {
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      *
33 33
      * @throws Missing404Exception,
34 34
      * @throws \Exception
35
-     * @return mixed
35
+     * @return callable
36 36
      */
37 37
     public function deleteFromIndex()
38 38
     {
Please login to merge, or discard this patch.
app/Listeners/SendSuccessfulLoginEmail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
             return false;
80 80
         }
81 81
 
82
-        return ! $this->stream->hasLoggedBefore($event->user->id, $event->ip, $event->browser);
82
+        return !$this->stream->hasLoggedBefore($event->user->id, $event->ip, $event->browser);
83 83
     }
84 84
 
85 85
     /**
Please login to merge, or discard this patch.
app/Http/Middleware/RedirectIfMoved.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,8 +70,8 @@
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-     * @param Forum|object|string $forum
74
-     * @param Topic|object|string $topic
73
+     * @param Forum $forum
74
+     * @param Topic $topic
75 75
      * @return \Illuminate\Http\RedirectResponse
76 76
      * @throws \Exception
77 77
      */
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/ResetPasswordController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      * Obsluga formularza rejestracji uzytkownika
46 46
      *
47 47
      * @param  \Illuminate\Http\Request  $request
48
-     * @return \Illuminate\Http\Response
48
+     * @return \Illuminate\Http\RedirectResponse
49 49
      */
50 50
     public function signup(Request $request)
51 51
     {
Please login to merge, or discard this patch.