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 ( fc2f08...10d0e6 )
by
unknown
61:03
created
agiledashboard/include/AgileDashboard/REST/v1/PlanningResource.class.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -117,6 +117,9 @@  discard block
 block discarded – undo
117 117
         return $planning;
118 118
     }
119 119
 
120
+    /**
121
+     * @param integer $limit
122
+     */
120 123
     private function limitValueIsAcceptable($limit) {
121 124
         return $limit <= self::MAX_LIMIT;
122 125
     }
@@ -125,6 +128,10 @@  discard block
 block discarded – undo
125 128
         return UserManager::instance()->getCurrentUser();
126 129
     }
127 130
 
131
+    /**
132
+     * @param integer $limit
133
+     * @param integer $offset
134
+     */
128 135
     private function getMilestonesByPlanning(Planning $planning, $limit, $offset) {
129 136
         $all_milestones = array();
130 137
         $milestones = $this->milestone_factory->getAllBareMilestones($this->getCurrentUser(), $planning);
@@ -137,6 +144,9 @@  discard block
 block discarded – undo
137 144
         return $milestones_representations;
138 145
     }
139 146
 
147
+    /**
148
+     * @param integer $size
149
+     */
140 150
     private function sendPaginationHeaders($limit, $offset, $size) {
141 151
         Header::sendPaginationHeaders($limit, $offset, $size, self::MAX_LIMIT);
142 152
     }
Please login to merge, or discard this patch.
include/AgileDashboard/REST/v1/ProjectBacklogResource.class.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -233,6 +233,10 @@  discard block
 block discarded – undo
233 233
         }
234 234
     }
235 235
 
236
+    /**
237
+     * @param PFUser $user
238
+     * @param Project $project
239
+     */
236 240
     private function validateArtifactIdsAreInUnassignedTopBacklog($ids, $user, $project) {
237 241
         try {
238 242
             $this->milestone_validator->validateArtifactIdsAreInUnassignedTopBacklog($ids, $user, $project);
@@ -245,6 +249,9 @@  discard block
 block discarded – undo
245 249
         }
246 250
     }
247 251
 
252
+    /**
253
+     * @param integer $size
254
+     */
248 255
     private function sendPaginationHeaders($limit, $offset, $size) {
249 256
         Header::sendPaginationHeaders($limit, $offset, $size, self::MAX_LIMIT);
250 257
     }
Please login to merge, or discard this patch.
include/AgileDashboard/REST/v2/BacklogItemRepresentationFactory.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
32 32
         return $backlog_item_representation;
33 33
     }
34 34
 
35
+    /**
36
+     * @param AgileDashboard_Milestone_Backlog_IBacklogItem $backlog_item
37
+     */
35 38
     private function getBacklogItemCardFields($backlog_item) {
36 39
         $current_user         = UserManager::instance()->getCurrentUser();
37 40
         $card_fields_semantic = $this->getCardFieldsSemantic($backlog_item);
Please login to merge, or discard this patch.
include/AgileDashboard/Semantic/Dao/Dao_InitialEffort.class.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@  discard block
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
+     * @param integer $tracker_id
33 34
      * @return mixed either false if error or object DataAccessResult
34 35
      */
35 36
     public function searchByTrackerId($tracker_id) {
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
     }
44 45
 
45 46
     /**
47
+     * @param integer $tracker_id
46 48
      * @return boolean true if success
47 49
      */
48 50
     public function save($tracker_id, $field_id) {
Please login to merge, or discard this patch.
include/AgileDashboard/Semantic/Dao/InitialEffortDao.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@  discard block
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
+     * @param integer $tracker_id
33 34
      * @return mixed either false if error or object DataAccessResult
34 35
      */
35 36
     public function searchByTrackerId($tracker_id) {
@@ -43,6 +44,8 @@  discard block
 block discarded – undo
43 44
     }
44 45
 
45 46
     /**
47
+     * @param integer $tracker_id
48
+     * @param integer $field_id
46 49
      * @return boolean true if success
47 50
      */
48 51
     public function save($tracker_id, $field_id) {
Please login to merge, or discard this patch.
plugins/agiledashboard/include/AgileDashboard/SequenceIdManager.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@  discard block
 block discarded – undo
41 41
         return $this->getArtifactPosition((int) $milestone->getArtifactId(), $artifact_id);
42 42
     }
43 43
 
44
+    /**
45
+     * @param integer $milestone_id
46
+     */
44 47
     private function getArtifactPosition($milestone_id, $artifact_id) {
45 48
         if (! isset($this->backlog_item_ids[$milestone_id][$artifact_id])) {
46 49
             return;
@@ -75,6 +78,9 @@  discard block
 block discarded – undo
75 78
         }
76 79
     }
77 80
 
81
+    /**
82
+     * @param integer $milestone_id
83
+     */
78 84
     private function storeTopBacklogArtifacts($milestone_id, AgileDashboard_Milestone_Backlog_BacklogItemCollection $backlog_items) {
79 85
         $artifact_position = 1;
80 86
         foreach ($backlog_items as $backlog_item) {
@@ -83,6 +89,9 @@  discard block
 block discarded – undo
83 89
         }
84 90
     }
85 91
 
92
+    /**
93
+     * @param integer $milestone_id
94
+     */
86 95
     private function storeBacklogArtifacts($milestone_id,AgileDashboard_Milestone_Backlog_DescendantItemsCollection $backlog_artifacts) {
87 96
         $artifact_position = 1;
88 97
         foreach ($backlog_artifacts as $backlog_artifact) {
Please login to merge, or discard this patch.
plugins/agiledashboard/include/AgileDashboard/XMLExporter.class.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -126,12 +126,18 @@
 block discarded – undo
126 126
         return self::TRACKER_ID_PREFIX . (string) $tracker_id ;
127 127
     }
128 128
 
129
+    /**
130
+     * @param string $value
131
+     */
129 132
     private function checkString($value, $value_denomination) {
130 133
         if (! $value ||  (is_string($value) && $value == '')) {
131 134
             throw new AgileDashboard_XMLExporterUnableToGetValueException('Unable to get value for attribute: ' . $value_denomination);
132 135
         }
133 136
     }
134 137
 
138
+    /**
139
+     * @param string $id
140
+     */
135 141
     private function checkId($id, $value_denomination) {
136 142
         if ($id == self::TRACKER_ID_PREFIX) {
137 143
             throw new AgileDashboard_XMLExporterUnableToGetValueException('Unable to get value for attribute: ' . $value_denomination);
Please login to merge, or discard this patch.
plugins/agiledashboard/include/agiledashboardPlugin.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -512,7 +512,7 @@
 block discarded – undo
512 512
 
513 513
     /**
514 514
      *
515
-     * @param array $param
515
+     * @param array $params
516 516
      *  Expected key/ values:
517 517
      *      project_id  int             The ID of the project for the import
518 518
      *      xml_content SimpleXmlObject A string of valid xml
Please login to merge, or discard this patch.
plugins/agiledashboard/include/AgileDashboardPluginInfo.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
  */
28 28
 class AgileDashboardPluginInfo extends PluginInfo {
29 29
 
30
+    /**
31
+     * @param AgileDashboardPlugin $plugin
32
+     */
30 33
     function __construct($plugin) {
31 34
         parent::__construct($plugin);
32 35
         $this->setPluginDescriptor(new AgileDashboardPluginDescriptor());
Please login to merge, or discard this patch.