GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — 2.9 ( 880ffa...e0e41e )
by Thorsten
15:13
created
phpmyfaq/inc/PMF/Sitemap.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     /**
103 103
      * Returns all available first letters
104 104
      *
105
-     * @return array
105
+     * @return string
106 106
      * @since  2007-03-30
107 107
      * @author Thorsten Rinne <[email protected]>
108 108
      */
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
      * Returns all records from the current first letter
209 209
      *
210 210
      * @param  string $letter Letter
211
-     * @return array
211
+     * @return string
212 212
      * @since  2007-03-30
213 213
      * @author Thorsten Rinne <[email protected]>
214 214
      */
Please login to merge, or discard this patch.
phpmyfaq/inc/PMF/String/Mbstring.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
      * @param string  $needle   Needle
144 144
      * @param boolean $part     Part
145 145
      *
146
-     * @return string|false
146
+     * @return string
147 147
      */
148 148
     public function strstr($haystack, $needle, $part = false)
149 149
     {
Please login to merge, or discard this patch.
phpmyfaq/inc/PMF/String/UTF8ToLatinConvertable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      *
66 66
      * @param string $language
67 67
      *
68
-     * @return PMF_String_Basic
68
+     * @return PMF_String_UTF8ToLatinConvertable
69 69
      */
70 70
     public static function getInstance($language = 'en')
71 71
     {
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
      * @param string $needle   Needle
187 187
      * @param boolean $part    Part
188 188
      *
189
-     * @return string|false
189
+     * @return string
190 190
      */
191 191
     public function strstr($haystack, $needle, $part = false)
192 192
     {
Please login to merge, or discard this patch.
phpmyfaq/inc/PMF/Attachment/Abstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -422,7 +422,7 @@
 block discarded – undo
422 422
     /**
423 423
      * Validate attached file with the real hash.
424 424
      *
425
-     * @return bool
425
+     * @return boolean|null
426 426
      */
427 427
     public function validate()
428 428
     {
Please login to merge, or discard this patch.
phpmyfaq/inc/PMF/DB/Helper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      * @param string $query
62 62
      * @param string $table
63 63
      *
64
-     * @return array
64
+     * @return string[]
65 65
      */
66 66
     public function buildInsertQueries($query, $table)
67 67
     {
Please login to merge, or discard this patch.
phpmyfaq/inc/PMF/DB/Mssql.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * @param string $password
71 71
      * @param string $database
72 72
      *
73
-     * @return bool TRUE, if connected, otherwise FALSE
73
+     * @return null|boolean TRUE, if connected, otherwise FALSE
74 74
      */
75 75
     public function connect($host, $user, $password, $database = '')
76 76
     {
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
      *
291 291
      * @param string $prefix Table prefix
292 292
      *
293
-     * @return array
293
+     * @return string[]
294 294
      */
295 295
     public function getTableNames($prefix = '')
296 296
     {
Please login to merge, or discard this patch.
phpmyfaq/inc/PMF/DB/Mysqli.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      *
69 69
      * @throws PMF_Exception
70 70
      *
71
-     * @return bool true, if connected, otherwise false
71
+     * @return null|boolean true, if connected, otherwise false
72 72
      */
73 73
     public function connect($host, $user, $password, $database = '')
74 74
     {
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      *
145 145
      * This function fetches a result row as an object.
146 146
      *
147
-     * @param mixed $result
147
+     * @param resource $result
148 148
      *
149 149
      * @return mixed
150 150
      */
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      *
159 159
      * This function fetches a result as an associative array.
160 160
      *
161
-     * @param mixed $result
161
+     * @param mysqli_result $result
162 162
      *
163 163
      * @return array
164 164
      */
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
      *
300 300
      * @param string $prefix Table prefix
301 301
      *
302
-     * @return array
302
+     * @return string[]
303 303
      */
304 304
     public function getTableNames($prefix = '')
305 305
     {
Please login to merge, or discard this patch.
phpmyfaq/inc/PMF/DB/Pgsql.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * @param string $password Password
67 67
      * @param string $database Database name
68 68
      *
69
-     * @return bool true, if connected, otherwise false
69
+     * @return null|boolean true, if connected, otherwise false
70 70
      */
71 71
     public function connect($host, $user, $password, $database = '')
72 72
     {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     /**
134 134
      * Fetch a result row as an object.
135 135
      *
136
-     * @param mixed $result
136
+     * @param resource $result
137 137
      *
138 138
      * @return mixed
139 139
      */
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
     /**
193 193
      * Logs the queries.
194 194
      *
195
-     * @return int
195
+     * @return string
196 196
      */
197 197
     public function log()
198 198
     {
@@ -203,6 +203,7 @@  discard block
 block discarded – undo
203 203
      * Returns just one row.
204 204
      *
205 205
      * @param  string
206
+     * @param string $query
206 207
      *
207 208
      * @return string
208 209
      */
@@ -294,7 +295,7 @@  discard block
 block discarded – undo
294 295
      *
295 296
      * @param string $prefix Table prefix
296 297
      *
297
-     * @return array
298
+     * @return string[]
298 299
      */
299 300
     public function getTableNames($prefix = '')
300 301
     {
Please login to merge, or discard this patch.
phpmyfaq/inc/PMF/DB/Sqlite3.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @param string
69 69
      * @param string
70 70
      *
71
-     * @return bool
71
+     * @return null|boolean
72 72
      */
73 73
     public function connect($host, $user, $passwd, $db = '')
74 74
     {
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      * @param int    $offset
89 89
      * @param int    $rowcount
90 90
      *
91
-     * @return mixed $result
91
+     * @return SQLite3Result $result
92 92
      */
93 93
     public function query($query, $offset = 0, $rowcount = 0)
94 94
     {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
     /**
125 125
      * Fetch a result row as an object.
126 126
      *
127
-     * @param mixed $result
127
+     * @param SQLite3Result $result
128 128
      *
129 129
      * @return object or NULL if there are no more results
130 130
      */
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      *
158 158
      * @param SQLite3Result $result
159 159
      *
160
-     * @return array
160
+     * @return SQLite3Result
161 161
      */
162 162
     public function fetchAssoc($result)
163 163
     {
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
     /**
213 213
      * Logs the queries.
214 214
      *
215
-     * @return int
215
+     * @return string
216 216
      */
217 217
     public function log()
218 218
     {
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
      *
245 245
      * @param string $prefix Table prefix
246 246
      *
247
-     * @return array
247
+     * @return string[]
248 248
      */
249 249
     public function getTableNames($prefix = '')
250 250
     {
Please login to merge, or discard this patch.