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
Pull Request — integration (#2604)
by Brendan
05:01
created
symphony/lib/toolkit/class.mysql.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
          * Returns the last insert ID from the previous query. This is
356 356
          * the value from an auto_increment field.
357 357
          *
358
-         * @return integer
358
+         * @return string
359 359
          *  The last interested row's ID
360 360
          */
361 361
         public function getInsertID()
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
          *  conflicts. By default this is set to false, which will not update the data and
383 383
          *  would return an SQL error
384 384
          * @throws DatabaseException
385
-         * @return boolean
385
+         * @return PDOStatement
386 386
          */
387 387
         public function insert(array $fields, $table, $updateOnDuplicate = false)
388 388
         {
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
          *  A WHERE statement for this UPDATE statement, defaults to null
446 446
          *  which will update all rows in the $table
447 447
          * @param array $params
448
-         * @return bool
448
+         * @return PDOStatement
449 449
          */
450 450
         public function update($fields, $table, $where = null, $params = array())
451 451
         {
@@ -472,7 +472,7 @@  discard block
 block discarded – undo
472 472
          *  which will delete all rows in the $table
473 473
          * @param array $params
474 474
          * @throws DatabaseException
475
-         * @return boolean
475
+         * @return PDOStatement
476 476
          */
477 477
         public function delete($table, $where = null, array $params = array())
478 478
         {
Please login to merge, or discard this patch.