Completed
Branch master (8ed11c)
by Phecho
07:05
created
app/Auth/DatabaseAuth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
     /**
92 92
      * Get user object.
93 93
      *
94
-     * @return \Jitamin\Services\User\DatabaseUserProvider
94
+     * @return null|DatabaseUserProvider
95 95
      */
96 96
     public function getUser()
97 97
     {
Please login to merge, or discard this patch.
app/Bus/EventBuilder/ProjectFileEventBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     /**
39 39
      * Build event data.
40 40
      *
41
-     * @return GenericEvent|null
41
+     * @return null|ProjectFileEvent
42 42
      */
43 43
     public function buildEvent()
44 44
     {
Please login to merge, or discard this patch.
app/Bus/EventBuilder/SubtaskEventBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     /**
66 66
      * Build event data.
67 67
      *
68
-     * @return GenericEvent|null
68
+     * @return null|SubtaskEvent
69 69
      */
70 70
     public function buildEvent()
71 71
     {
Please login to merge, or discard this patch.
app/Bus/EventBuilder/TaskFileEventBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     /**
40 40
      * Build event data.
41 41
      *
42
-     * @return GenericEvent|null
42
+     * @return null|TaskFileEvent
43 43
      */
44 44
     public function buildEvent()
45 45
     {
Please login to merge, or discard this patch.
app/Bus/Job/HttpAsyncJob.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      * @param string $method
23 23
      * @param string $url
24 24
      * @param string $content
25
-     * @param array  $headers
25
+     * @param string[]  $headers
26 26
      *
27 27
      * @return $this
28 28
      */
Please login to merge, or discard this patch.
app/Core/Cache/MemcachedCache.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -103,6 +103,7 @@
 block discarded – undo
103 103
      *
104 104
      * @parma  int  $minutes
105 105
      *
106
+     * @param integer $minutes
106 107
      * @return int
107 108
      */
108 109
     protected function toTimestamp($minutes)
Please login to merge, or discard this patch.
app/Core/Csv.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@
 block discarded – undo
214 214
      *
215 215
      * @param array $row
216 216
      *
217
-     * @return array
217
+     * @return callable
218 218
      */
219 219
     private function filterRow(array $row)
220 220
     {
Please login to merge, or discard this patch.
app/Core/DateParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
     /**
155 155
      * Get formats for date parsing.
156 156
      *
157
-     * @return array
157
+     * @return string[]
158 158
      */
159 159
     public function getParserFormats()
160 160
     {
Please login to merge, or discard this patch.
app/Core/Http/Request.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@
 block discarded – undo
179 179
     /**
180 180
      * Return HTTP method.
181 181
      *
182
-     * @return bool
182
+     * @return string
183 183
      */
184 184
     public function getMethod()
185 185
     {
Please login to merge, or discard this patch.