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 ( 8c6ce3...1e39d4 )
by
unknown
168:15 queued 98:51
created
src/common/svn/tokens/SVN_TokenDao.class.php 1 patch
Doc Comments   +16 added lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@  discard block
 block discarded – undo
21 21
 
22 22
 class SVN_TokenDao extends DataAccessObject {
23 23
 
24
+    /**
25
+     * @param integer $user_id
26
+     */
24 27
     public function getSVNTokensForUser($user_id) {
25 28
         $user_id = $this->da->escapeInt($user_id);
26 29
 
@@ -31,6 +34,10 @@  discard block
 block discarded – undo
31 34
         return $this->retrieve($sql);
32 35
     }
33 36
 
37
+    /**
38
+     * @param integer $user_id
39
+     * @param string $token
40
+     */
34 41
     public function generateSVNTokenForUser($user_id, $token, $comment) {
35 42
         $user_id        = $this->da->escapeInt($user_id);
36 43
         $token          = $this->da->quoteSmart($token);
@@ -43,6 +50,9 @@  discard block
 block discarded – undo
43 50
         return $this->update($sql);
44 51
     }
45 52
 
53
+    /**
54
+     * @param integer $user_id
55
+     */
46 56
     public function deleteSVNTokensForUser($user_id, $tokens_to_be_deleted) {
47 57
         $user_id              = $this->da->escapeInt($user_id);
48 58
         $tokens_to_be_deleted = $this->da->escapeIntImplode($tokens_to_be_deleted);
@@ -54,6 +64,9 @@  discard block
 block discarded – undo
54 64
         return $this->update($sql);
55 65
     }
56 66
 
67
+    /**
68
+     * @param integer $project_id
69
+     */
57 70
     public function isProjectAuthorizingTokens($project_id) {
58 71
         $project_id = $this->da->escapeInt($project_id);
59 72
 
@@ -64,6 +77,9 @@  discard block
 block discarded – undo
64 77
         return $this->retrieve($sql);
65 78
     }
66 79
 
80
+    /**
81
+     * @param integer $project_id
82
+     */
67 83
     public function setProjectAuthorizesTokens($project_id) {
68 84
         $project_id = $this->da->escapeInt($project_id);
69 85
 
Please login to merge, or discard this patch.