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 — develop (#155)
by
unknown
08:46
created
system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -483,7 +483,7 @@
 block discarded – undo
483 483
 	 * @param	string	$orderby
484 484
 	 * @param	string	$direction	ASC, DESC or RANDOM
485 485
 	 * @param	bool	$escape
486
-	 * @return	object
486
+	 * @return	CI_DB_query_builder
487 487
 	 */
488 488
 	public function order_by($orderby, $direction = '', $escape = NULL)
489 489
 	{
Please login to merge, or discard this patch.
system/libraries/Session/Session.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -711,7 +711,6 @@  discard block
 block discarded – undo
711 711
 	 *
712 712
 	 * Legacy CI_Session compatibility method
713 713
 	 *
714
-	 * @param	mixed	$data	Session data key(s)
715 714
 	 * @return	void
716 715
 	 */
717 716
 	public function unset_userdata($key)
@@ -879,7 +878,6 @@  discard block
 block discarded – undo
879 878
 	 *
880 879
 	 * Legacy CI_Session compatibility method
881 880
 	 *
882
-	 * @param	mixed	$data	Session data key(s)
883 881
 	 * @return	void
884 882
 	 */
885 883
 	public function unset_tempdata($key)
Please login to merge, or discard this patch.
system/database/DB_driver.php 1 patch
Doc Comments   +7 added lines, -2 removed lines patch added patch discarded remove patch
@@ -451,7 +451,7 @@  discard block
 block discarded – undo
451 451
 	 *
452 452
 	 * This is just a dummy method that all drivers will override.
453 453
 	 *
454
-	 * @return	mixed
454
+	 * @return	boolean
455 455
 	 */
456 456
 	public function db_connect()
457 457
 	{
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
 	/**
464 464
 	 * Persistent database connection
465 465
 	 *
466
-	 * @return	mixed
466
+	 * @return	boolean
467 467
 	 */
468 468
 	public function db_pconnect()
469 469
 	{
@@ -520,6 +520,7 @@  discard block
 block discarded – undo
520 520
 	 * Set client character set
521 521
 	 *
522 522
 	 * @param	string
523
+	 * @param string $charset
523 524
 	 * @return	bool
524 525
 	 */
525 526
 	public function db_set_charset($charset)
@@ -780,6 +781,7 @@  discard block
 block discarded – undo
780 781
 	 * not require all the features of the main query() function.
781 782
 	 *
782 783
 	 * @param	string	the sql query
784
+	 * @param string $sql
783 785
 	 * @return	mixed
784 786
 	 */
785 787
 	public function simple_query($sql)
@@ -980,6 +982,7 @@  discard block
 block discarded – undo
980 982
 	 *
981 983
 	 * @param	string	the sql statement
982 984
 	 * @param	array	an array of bind data
985
+	 * @param string $sql
983 986
 	 * @return	string
984 987
 	 */
985 988
 	public function compile_binds($sql, $binds)
@@ -1180,6 +1183,7 @@  discard block
 block discarded – undo
1180 1183
 	 * Platform-dependant string escape
1181 1184
 	 *
1182 1185
 	 * @param	string
1186
+	 * @param string $str
1183 1187
 	 * @return	string
1184 1188
 	 */
1185 1189
 	protected function _escape_str($str)
@@ -1473,6 +1477,7 @@  discard block
 block discarded – undo
1473 1477
 	 * @param	string	the table name
1474 1478
 	 * @param	array	the insert keys
1475 1479
 	 * @param	array	the insert values
1480
+	 * @param string $table
1476 1481
 	 * @return	string
1477 1482
 	 */
1478 1483
 	protected function _insert($table, $keys, $values)
Please login to merge, or discard this patch.
myth/Auth/LocalAuthentication.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
     /**
243 243
      * Logs a user out and removes all session information.
244 244
      *
245
-     * @return mixed
245
+     * @return false|null
246 246
      */
247 247
     public function logout()
248 248
     {
@@ -608,7 +608,7 @@  discard block
 block discarded – undo
608 608
      * the passed in $email.
609 609
      *
610 610
      * @param $email
611
-     * @return mixed
611
+     * @return boolean
612 612
      */
613 613
     public function remindUser($email)
614 614
     {
@@ -653,7 +653,7 @@  discard block
 block discarded – undo
653 653
      * @param $credentials
654 654
      * @param $password
655 655
      * @param $passConfirm
656
-     * @return mixed
656
+     * @return boolean
657 657
      */
658 658
     public function resetPassword($credentials, $password, $passConfirm)
659 659
     {
@@ -751,7 +751,7 @@  discard block
 block discarded – undo
751 751
      *
752 752
      * @param $model
753 753
      * @param bool $allow_any_parent
754
-     * @return mixed
754
+     * @return LocalAuthentication
755 755
      */
756 756
     public function useModel($model, $allow_any_parent=false)
757 757
     {
Please login to merge, or discard this patch.