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 — 3.0 ( 49ab7a...0a9b70 )
by Thorsten
19:57 queued 13:30
created
phpmyfaq/src/phpMyFAQ/Attachment/Factory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
      *
106 106
      * @throws Exception
107 107
      *
108
-     * @return array
108
+     * @return integer|null
109 109
      */
110 110
     public static function fetchByRecordId(Configuration $config, $recordId): array
111 111
     {
Please login to merge, or discard this patch.
phpmyfaq/src/phpMyFAQ/Category/CategoryNews.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,6 @@
 block discarded – undo
95 95
      * Removes the news $newsId from all categories.
96 96
      * Returns true on success, otherwise false.
97 97
      *
98
-     * @param int $categoryId
99 98
      * @return bool
100 99
      */
101 100
     public function removeNewsFromAllCategories($newsId)
Please login to merge, or discard this patch.
phpmyfaq/src/phpMyFAQ/Category/Entity.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     }
237 237
 
238 238
     /**
239
-     * @return string
239
+     * @return integer
240 240
      */
241 241
     public function getUserId()
242 242
     {
@@ -264,7 +264,6 @@  discard block
 block discarded – undo
264 264
     }
265 265
 
266 266
     /**
267
-     * @param $showHome $active
268 267
      *
269 268
      * @return Entity
270 269
      */
Please login to merge, or discard this patch.
phpmyfaq/src/phpMyFAQ/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/src/phpMyFAQ/Db/Sqlite3.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      * @param string
70 70
      * @param string
71 71
      *
72
-     * @return bool
72
+     * @return null|boolean
73 73
      */
74 74
     public function connect($host, $user, $passwd, $db = '')
75 75
     {
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
     /**
215 215
      * Logs the queries.
216 216
      *
217
-     * @return int
217
+     * @return string
218 218
      */
219 219
     public function log()
220 220
     {
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
      *
249 249
      * @param string $prefix Table prefix
250 250
      *
251
-     * @return array
251
+     * @return string[]
252 252
      */
253 253
     public function getTableNames($prefix = '')
254 254
     {
Please login to merge, or discard this patch.
phpmyfaq/src/phpMyFAQ/Faq.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1279,7 +1279,7 @@  discard block
 block discarded – undo
1279 1279
      * @param int $recordId Record id
1280 1280
      * @param string $language Language
1281 1281
      *
1282
-     * @return int
1282
+     * @return boolean
1283 1283
      */
1284 1284
     public function addCategoryRelations(Array $categories, $recordId, $language)
1285 1285
     {
@@ -2575,11 +2575,11 @@  discard block
 block discarded – undo
2575 2575
     /**
2576 2576
      * Build the SQL query for retrieving faq records according to the constraints provided.
2577 2577
      *
2578
-     * @param $queryType
2579
-     * @param $categoryId
2580
-     * @param $bDownwards
2581
-     * @param $lang
2582
-     * @param $date
2578
+     * @param string $queryType
2579
+     * @param integer $categoryId
2580
+     * @param boolean $bDownwards
2581
+     * @param string $lang
2582
+     * @param string $date
2583 2583
      * @param $faqId
2584 2584
      *
2585 2585
      * @return string
@@ -2703,7 +2703,7 @@  discard block
 block discarded – undo
2703 2703
      * Build a logic sequence, for a WHERE statement, of those category IDs
2704 2704
      * children of the provided category ID, if any.
2705 2705
      *
2706
-     * @param   $nCatid
2706
+     * @param   integer $nCatid
2707 2707
      * @param   $logicOp
2708 2708
      * @param   $oCat
2709 2709
      *
Please login to merge, or discard this patch.
phpmyfaq/src/phpMyFAQ/Instance.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
      * Adds a configuration item for the database.
263 263
      *
264 264
      * @param string $name
265
-     * @param mixed  $value
265
+     * @param string  $value
266 266
      *
267 267
      * @return bool
268 268
      */
Please login to merge, or discard this patch.
phpmyfaq/src/phpMyFAQ/Link.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -344,7 +344,7 @@
 block discarded – undo
344 344
 
345 345
     /**
346 346
      * Returns the HTTP GET parameters.
347
-     * @return array
347
+     * @return string
348 348
      */
349 349
     protected function getHttpGetParameters(): array
350 350
     {
Please login to merge, or discard this patch.
phpmyfaq/src/phpMyFAQ/Linkverifier.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
     /**
116 116
      * Constructor.
117 117
      *
118
-     * @param PMF_Configuration $config
118
+     * @param Configuration $config
119 119
      * @param string            $user   User
120 120
      *
121 121
      * @return LinkVerifier
Please login to merge, or discard this patch.