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/docman/include/Docman_ProjectItemsBatchIterator.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
 
30 30
     private $project_id;
31 31
 
32
+    /**
33
+     * @param integer $project_id
34
+     */
32 35
     public function __construct(Docman_ItemFactory $item_factory, $project_id) {
33 36
         $this->item_factory = $item_factory;
34 37
         $this->project_id   = $project_id;
Please login to merge, or discard this patch.
plugins/docman/include/Docman_Report.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -76,6 +76,9 @@
 block discarded – undo
76 76
         return $this->title;
77 77
     }
78 78
 
79
+    /**
80
+     * @param integer $g
81
+     */
79 82
     function setGroupId($g) {
80 83
         $this->groupId = $g;
81 84
     }
Please login to merge, or discard this patch.
plugins/docman/include/Docman_ReportColumn.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
         $this->sort = null;
30 30
     }
31 31
 
32
+    /**
33
+     * @param integer $s
34
+     */
32 35
     function setSort($s) {
33 36
         $this->sort = $s;
34 37
     }
Please login to merge, or discard this patch.
plugins/docman/include/Docman_ReportColumnFactory.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
         $this->groupId = $groupId;
32 32
     }
33 33
 
34
+    /**
35
+     * @param string $colLabel
36
+     */
34 37
     function getColumnFromLabel($colLabel) {
35 38
         $col = null;
36 39
         $mdFactory = $this->_getMetadataFactory();
Please login to merge, or discard this patch.
plugins/docman/include/Docman_ReportDao.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -127,6 +127,9 @@
 block discarded – undo
127 127
         $this->update($sql);
128 128
     }
129 129
 
130
+    /**
131
+     * @param string $sql
132
+     */
130 133
     function createAndReturnId($sql) {
131 134
         $inserted = $this->update($sql);
132 135
         if ($inserted) {
Please login to merge, or discard this patch.
plugins/docman/include/Docman_ReportFactory.class.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -36,6 +36,8 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * Create a report for table view based on URL
39
+     * @param integer|null $reportId
40
+     * @param boolean $feedback
39 41
      */
40 42
     function &get($reportId, $request, $item, &$feedback) {
41 43
         $report = null;
@@ -263,6 +265,9 @@  discard block
 block discarded – undo
263 265
         return $rai;
264 266
     }
265 267
 
268
+    /**
269
+     * @param PFUser $user
270
+     */
266 271
     function getPersonalReportsForUser($user) {
267 272
         $ra = array();
268 273
         $dao =& $this->getDao();
@@ -336,6 +341,9 @@  discard block
 block discarded – undo
336 341
         return false;
337 342
     }
338 343
 
344
+    /**
345
+     * @param Docman_Report $report
346
+     */
339 347
     function deleteReport($report) {
340 348
         $dao =& $this->getDao();
341 349
         $filterFactory = new Docman_FilterFactory($this->groupId);
Please login to merge, or discard this patch.
plugins/docman/include/Docman_ReportHtml.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -49,6 +49,9 @@
 block discarded – undo
49 49
         return $html;
50 50
     }
51 51
 
52
+    /**
53
+     * @param ArrayIterator $reportIter
54
+     */
52 55
     function getSelectOptionFromReportIterator($reportIter, $current=null) {
53 56
         $html = '';
54 57
         $reportIter->rewind();
Please login to merge, or discard this patch.
plugins/docman/include/Docman_SettingsBo.class.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -108,6 +108,9 @@  discard block
 block discarded – undo
108 108
         return $dao->updateMetadataUsageForGroupId($this->groupId, $label, $useIt);
109 109
     }
110 110
 
111
+    /**
112
+     * @param integer $targetGroupId
113
+     */
111 114
     function cloneMetadataSettings($targetGroupId) {
112 115
         if($this->settingsExist()) {
113 116
             $dao =& $this->getDao();
@@ -136,6 +139,8 @@  discard block
 block discarded – undo
136 139
         
137 140
      /**
138 141
       * @access: private
142
+      * @param Docman_SettingsBo $srcBo
143
+      * @param string $label
139 144
       */
140 145
     function _importMetadataUsage($srcBo, $label) {
141 146
         if($srcBo->getMetadataUsage($label) == true &&
Please login to merge, or discard this patch.
plugins/docman/include/Docman_SubItemsWritableVisitor.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -31,6 +31,9 @@
 block discarded – undo
31 31
     var $docCounter;
32 32
     var $fldCounter;
33 33
 
34
+    /**
35
+     * @param integer $groupId
36
+     */
34 37
     function Docman_SubItemsWritableVisitor($groupId, $user) {
35 38
         $this->dpm =& Docman_PermissionsManager::instance($groupId);
36 39
         $this->user = $user;
Please login to merge, or discard this patch.