Completed
Branch master (8e0976)
by Adam
04:13
created
app/Models/Taggable.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
     }
16 16
 
17 17
     /**
18
-     * @return array
18
+     * @return Post
19 19
      */
20 20
     public function getTagNames()
21 21
     {
Please login to merge, or discard this patch.
app/Http/Validators/ThrottleValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
     }
100 100
 
101 101
     /**
102
-     * @return int
102
+     * @return double
103 103
      */
104 104
     protected function availableIn()
105 105
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Wiki/ShowController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-     * @param $wikiId
121
+     * @param integer $wikiId
122 122
      * @return \Coyote\Wiki[]
123 123
      */
124 124
     private function getRelated($wikiId)
Please login to merge, or discard this patch.
app/Models/Topic.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@
 block discarded – undo
269 269
     }
270 270
 
271 271
     /**
272
-     * @return float
272
+     * @return integer
273 273
      */
274 274
     public function getRank()
275 275
     {
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/Controllers/Auth/ConfirmController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
      * Potwierdzenie adresu e-mail poprzez link aktywacyjny znajdujacy sie w mailu
99 99
      *
100 100
      * @param Request $request
101
-     * @return \Illuminate\Http\Response
101
+     * @return \Illuminate\Http\RedirectResponse
102 102
      */
103 103
     public function email(Request $request)
104 104
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Pastebin/ShowController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param \Coyote\Pastebin $pastebin
28
-     * @return mixed
28
+     * @return \Illuminate\View\View
29 29
      */
30 30
     public function index($pastebin)
31 31
     {
Please login to merge, or discard this patch.
app/Http/Controllers/User/UserMenuTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 trait UserMenuTrait
11 11
 {
12 12
     /**
13
-     * @return mixed
13
+     * @return string
14 14
      */
15 15
     public function getUserMenu()
16 16
     {
Please login to merge, or discard this patch.
app/Services/LogViewer/LogViewer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 
110 110
     /**
111 111
      * @param string $line
112
-     * @return bool
112
+     * @return integer
113 113
      */
114 114
     protected function isBeginningOfMessage($line, &$header = null)
115 115
     {
Please login to merge, or discard this patch.