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 — master ( 7a10f1...c2f16b )
by
unknown
76:46
created
plugins/ldap/include/LDAP_UserManager.class.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     /**
87 87
      * Get LDAPResult object corresponding to an LDAP ID
88 88
      *
89
-     * @param  $ldapId    The LDAP identifier
89
+     * @param  string $ldapId    The LDAP identifier
90 90
      * @return LDAPResult
91 91
      */
92 92
     function getLdapFromLdapId($ldapId) {
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
      * Return LDAP logins stored in DB corresponding to given userIds.
203 203
      * 
204 204
      * @param Array $userIds Array of user ids
205
-     * @return Array ldap logins
205
+     * @return DataAccessResult ldap logins
206 206
      */
207 207
     function getLdapLoginFromUserIds(array $userIds) {
208 208
         $dao = $this->getDao();
Please login to merge, or discard this patch.
plugins/ldap/include/LDAP_UserSync.class.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -58,6 +58,7 @@
 block discarded – undo
58 58
     /**
59 59
      * Return the sync attributes
60 60
      * 
61
+     * @param LDAP $ldap
61 62
      * @return array
62 63
      */
63 64
     public function getSyncAttributes($ldap) {
Please login to merge, or discard this patch.
plugins/ldap/include/ldapPlugin.class.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -510,6 +510,9 @@  discard block
 block discarded – undo
510 510
         print '</TR>';
511 511
     }
512 512
 
513
+    /**
514
+     * @param LDAPResult $lr
515
+     */
513 516
     function buildLinkToDirectory(&$lr, $value='') {
514 517
         if($value === '') {
515 518
             $value = $lr->getLogin();
@@ -849,7 +852,7 @@  discard block
 block discarded – undo
849 852
      *
850 853
      * @param Array $params
851 854
      *
852
-     * @return void
855
+     * @return boolean|null
853 856
      */
854 857
     function codendi_daily_start($params) {
855 858
         if ($GLOBALS['sys_auth_type'] == 'ldap' && $this->isDailySyncEnabled()) {
Please login to merge, or discard this patch.
plugins/ldap/include/LDAPResult.class.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     /**
67 67
      * Return true if there is no entries in the result set.
68 68
      *
69
-     * @return int
69
+     * @return boolean
70 70
      */
71 71
     function isEmpty() {
72 72
         return empty($this->list);
@@ -215,6 +215,9 @@  discard block
 block discarded – undo
215 215
         return $this->get($this->ldapParams['eduid']);
216 216
     }
217 217
 
218
+    /**
219
+     * @return string|null
220
+     */
218 221
     function getDn() {
219 222
         return $this->info['dn'];
220 223
     }
Please login to merge, or discard this patch.
plugins/ldap/tests/bootstrap.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@
 block discarded – undo
54 54
 
55 55
     private $expected;
56 56
 
57
+    /**
58
+     * @param string $expected_cn
59
+     */
57 60
     public function __construct($expected_cn) {
58 61
         parent::__construct();
59 62
         $this->expected = $expected_cn;
Please login to merge, or discard this patch.
plugins/ldap/tests/LDAP_DirectorySynchronizationTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -44,6 +44,10 @@
 block discarded – undo
44 44
 // Ensure user is suspended
45 45
 class MyUmMock4Suspended extends MockUserManager {
46 46
     private $_myUmTest;
47
+
48
+    /**
49
+     * @param LDAP_DirectorySynchronizationTest $test
50
+     */
47 51
     function __construct($test) {
48 52
         $this->_myUmTest = $test;
49 53
         parent::__construct($test);
Please login to merge, or discard this patch.
plugins/ldap/tests/LDAP_GroupManagerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -39,6 +39,9 @@
 block discarded – undo
39 39
         parent::__construct($name);
40 40
     }
41 41
     
42
+    /**
43
+     * @param string $method
44
+     */
42 45
     protected function getLdapResult($method, $result) {
43 46
         $ldapRes = new MockLDAPResult($this);
44 47
         $ldapRes->setReturnValue($method, $result);
Please login to merge, or discard this patch.
mediawiki/db/mysql/updates/2013/201306061508_add_interwiki_table.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -58,6 +58,10 @@
 block discarded – undo
58 58
         $this->execDB($sql, 'An error occured while adding index on plugin_mediawiki_interwiki: ');
59 59
     }
60 60
 
61
+    /**
62
+     * @param string $sql
63
+     * @param string $message
64
+     */
61 65
     private function execDB($sql, $message) {
62 66
         $res = $this->db->dbh->exec($sql);
63 67
         if ($res === false) {
Please login to merge, or discard this patch.
mediawiki/db/mysql/updates/2014/201402130957_add_ugroup_mapping_table.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -52,6 +52,10 @@
 block discarded – undo
52 52
         $this->execDB($sql, 'An error occured while adding plugin_mediawiki_ugroup_mapping table: ');
53 53
     }
54 54
 
55
+    /**
56
+     * @param string $sql
57
+     * @param string $message
58
+     */
55 59
     private function execDB($sql, $message) {
56 60
         $res = $this->db->dbh->exec($sql);
57 61
         if ($res === false) {
Please login to merge, or discard this patch.