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 ( 067c77...adceb2 )
by
unknown
67:51
created
data-transformation/GraphOnTrackersV5_CumulativeFlow_DataBuilder.class.php 1 patch
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,6 +100,9 @@  discard block
 block discarded – undo
100 100
         return $this->filterEmptyLines($result);;
101 101
     }
102 102
 
103
+    /**
104
+     * @param Tracker_FormElement_Field $observed_field
105
+     */
103 106
     protected function isValidObservedField($observed_field, $type) {
104 107
         return $observed_field && $observed_field->userCanRead(UserManager::instance()->getCurrentUser());
105 108
     }
@@ -116,7 +119,6 @@  discard block
 block discarded – undo
116 119
     /**
117 120
      *
118 121
      * Fetch the colors, and initialize an empty result array. => $tempData[timestamp][label_id] = 0
119
-     * @param int $field_id ID of the observed field
120 122
      * @return array $resultArray Initialized array for this graph
121 123
      */
122 124
     private function initEmptyResultArrayFromField($engine) {
@@ -149,7 +151,7 @@  discard block
 block discarded – undo
149 151
     /**
150 152
      *
151 153
      * Get the the last changeset BEFORE the timestamp for each artifact
152
-     * @param int $beforeTimestamp
154
+     * @param double $timestamp
153 155
      * @return $changesets array of changeset_id
154 156
      */
155 157
     private function getLastChangesetsBefore($timestamp) {
Please login to merge, or discard this patch.
data-transformation/GraphOnTrackersV5_Scrum_Burnup_DataBuilder.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -60,6 +60,9 @@
 block discarded – undo
60 60
         return $data;
61 61
     }
62 62
     
63
+    /**
64
+     * @param string $column
65
+     */
63 66
     protected function extractDataFromResult($res, $ids, $column) {
64 67
         $data = array();
65 68
         if ($res && db_numrows($res)) {
Please login to merge, or discard this patch.
include/graphic-library/GraphOnTrackersV5_Engine.class.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -61,6 +61,8 @@
 block discarded – undo
61 61
      * If the given color is undefined(null), then we must take one from the current
62 62
      * theme (in available_colors).
63 63
      *
64
+     * @param string $available_colors
65
+     * @param integer $max_colors
64 66
      * @return string hexadecimal representation of the color
65 67
      */
66 68
     private function fillTheBlanks($color, $available_colors, $max_colors, &$i) {
Please login to merge, or discard this patch.
include/graphic-library/GraphOnTrackersV5_Engine_Gantt.class.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -310,6 +310,9 @@  discard block
 block discarded – undo
310 310
         return $bar;
311 311
     }
312 312
     
313
+    /**
314
+     * @param integer $pos
315
+     */
313 316
     protected function addMilestone($pos, $data, $params = array()) {
314 317
         $format = "Y-m-d";
315 318
         $aLabel   = isset($params['label']) ? $params['label'] : array($data['id'], html_entity_decode($data['summary']));
@@ -331,6 +334,9 @@  discard block
 block discarded – undo
331 334
         return $milestone;
332 335
     }
333 336
     
337
+    /**
338
+     * @param integer $pos
339
+     */
334 340
     protected function addErrorBar($pos, $data) {
335 341
         $format   = "Y-m-d";
336 342
         
@@ -362,6 +368,10 @@  discard block
 block discarded – undo
362 368
         $bar->SetPattern(GANTT_RDIAG,"black", 96);
363 369
     }
364 370
     
371
+    /**
372
+     * @param integer $pos
373
+     * @param boolean $progress
374
+     */
365 375
     protected function addLateBar($pos, $data, $progress, $params = array()) {
366 376
         $bar = $this->addBar($pos, $data, $progress, $params);
367 377
         $bar->SetColor($this->graph->getLateBarColor().":0.7");
Please login to merge, or discard this patch.
plugins/graphontrackersv5/include/GraphOnTrackersV5_Renderer.class.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@  discard block
 block discarded – undo
27 27
     protected $chart_to_edit;
28 28
     protected $plugin;
29 29
 
30
+    /**
31
+     * @param GraphOnTrackersV5Plugin $plugin
32
+     */
30 33
     public function __construct($id, $report, $name, $description, $rank, $plugin) {
31 34
         parent::__construct($id, $report, $name, $description, $rank);
32 35
         $this->charts        = null;
@@ -124,6 +127,9 @@  discard block
 block discarded – undo
124 127
         return $html;
125 128
     }
126 129
 
130
+    /**
131
+     * @param boolean $readonly
132
+     */
127 133
     protected function fetchCharts($matching_ids, PFUser $current_user, $in_dashboard = false, $readonly = null, $store_in_session = true) {
128 134
         $html = '';
129 135
         $hp = Codendi_HTMLPurifier::instance();
Please login to merge, or discard this patch.
plugins/graphontrackersv5/include/GraphOnTrackersV5_Widget_Chart.class.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -28,6 +28,10 @@
 block discarded – undo
28 28
 abstract class GraphOnTrackersV5_Widget_Chart extends Widget {
29 29
     var $chart_title;
30 30
     var $chart_id;
31
+
32
+    /**
33
+     * @param string $id
34
+     */
31 35
     function GraphOnTrackersV5_Widget_Chart($id, $owner_id, $owner_type) {
32 36
         $this->Widget($id);
33 37
         $this->setOwner($owner_id, $owner_type);
Please login to merge, or discard this patch.
plugins/graphontrackersv5/include/GraphOnTrackersV5PluginInfo.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@
 block discarded – undo
24 24
 
25 25
 class GraphOnTrackersV5PluginInfo extends PluginInfo {
26 26
     
27
+    /**
28
+     * @param GraphOnTrackersV5Plugin $plugin
29
+     */
27 30
     function GraphOnTrackersV5PluginInfo(&$plugin) {
28 31
         $this->PluginInfo($plugin);
29 32
         $this->setPluginDescriptor(new GraphOnTrackersV5PluginDescriptor());
Please login to merge, or discard this patch.
plugins/hudson/include/HudsonBuild.class.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@  discard block
 block discarded – undo
31 31
         
32 32
     /**
33 33
      * Construct an Hudson build from a build URL
34
+     * @param string $hudson_build_url
34 35
      */
35 36
     function HudsonBuild($hudson_build_url) {
36 37
         $parsed_url = parse_url($hudson_build_url);
@@ -56,6 +57,9 @@  discard block
 block discarded – undo
56 57
         $this->dom_build = $this->_getXMLObject($this->hudson_build_url);
57 58
     }
58 59
     
60
+    /**
61
+     * @param string $hudson_build_url
62
+     */
59 63
     protected function _getXMLObject($hudson_build_url) {
60 64
         $xmlstr = @file_get_contents($hudson_build_url, false, $this->context);
61 65
         if ($xmlstr !== false) {
@@ -108,6 +112,10 @@  discard block
 block discarded – undo
108 112
     function getDuration() {
109 113
         return $this->dom_build->duration;
110 114
     }
115
+
116
+    /**
117
+     * @return string
118
+     */
111 119
     function getTimestamp() {
112 120
         return $this->dom_build->timestamp;
113 121
     }
Please login to merge, or discard this patch.
plugins/hudson/include/HudsonJob.class.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,6 +84,9 @@  discard block
 block discarded – undo
84 84
          $this->dom_job = $this->_getXMLObject($this->hudson_job_url);
85 85
     }
86 86
     
87
+    /**
88
+     * @param string $hudson_job_url
89
+     */
87 90
     protected function _getXMLObject($hudson_job_url) {
88 91
         $xmlstr = @file_get_contents($hudson_job_url, false, $this->context);
89 92
         if ($xmlstr !== false) {
@@ -124,6 +127,10 @@  discard block
 block discarded – undo
124 127
     function getUrl() {
125 128
         return $this->getDomJob()->url;
126 129
     }
130
+
131
+    /**
132
+     * @return string
133
+     */
127 134
     function getColor() {
128 135
         return $this->getDomJob()->color;
129 136
     }
@@ -301,7 +308,7 @@  discard block
 block discarded – undo
301 308
      * @exception if unable to open build URL or if response is an error
302 309
      *  
303 310
      * @param string $token if CI server has activated security (login/password), then a token is mandatory to build jobs. This token is defined in the job configuration.
304
-     * @return response of build call.
311
+     * @return string of build call.
305 312
      */
306 313
     function launchBuild($token = null) {
307 314
         $url = $this->hudson_dobuild_url;
Please login to merge, or discard this patch.