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 ( 4ae7b3...48e1f6 )
by
unknown
67:51 queued 23:22
created
plugins/git/include/Git/Mirror/DefaultProjectMirrorDao.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@  discard block
 block discarded – undo
20 20
 
21 21
 class DefaultProjectMirrorDao extends DataAccessObject {
22 22
 
23
+    /**
24
+     * @param integer $project_id
25
+     */
23 26
     public function removeAllToProject($project_id) {
24 27
         $project_id = $this->da->escapeInt($project_id);
25 28
 
@@ -29,6 +32,9 @@  discard block
 block discarded – undo
29 32
         return $this->update($sql);
30 33
     }
31 34
 
35
+    /**
36
+     * @param integer $project_id
37
+     */
32 38
     public function addDefaultMirrorsToProject($project_id, array $selected_mirror_ids) {
33 39
         $project_id = $this->da->escapeInt($project_id);
34 40
 
@@ -46,6 +52,9 @@  discard block
 block discarded – undo
46 52
         return $this->update($sql);
47 53
     }
48 54
 
55
+    /**
56
+     * @param integer $project_id
57
+     */
49 58
     public function getDefaultMirrorIdsForProject($project_id) {
50 59
         $project_id = $this->da->escapeInt($project_id);
51 60
 
Please login to merge, or discard this patch.