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
plugins/cardwall/include/OnTop/Config.class.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,6 @@
 block discarded – undo
84 84
     /**
85 85
      * Get Frestyle columns for Cardwall_OnTop, or status columns if none
86 86
      *
87
-     * @param Tracker $tracker
88 87
      * @return Cardwall_OnTop_Config_ColumnCollection
89 88
      */
90 89
     public function getDashboardColumns() {
Please login to merge, or discard this patch.
plugins/cardwall/include/OnTop/Config/ColumnFactory.class.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -62,6 +62,10 @@
 block discarded – undo
62 62
         return $columns;
63 63
     }
64 64
     
65
+    /**
66
+     * @param Cardwall_OnTop_Config_ColumnCollection $columns
67
+     * @param Tracker_FormElement_Field_List $field
68
+     */
65 69
     private function fillColumnsFor(&$columns, $field) {
66 70
         $decorators = $field->getDecorators();
67 71
         foreach($field->getVisibleValuesPlusNoneIfAny() as $value) {
Please login to merge, or discard this patch.
plugins/cardwall/include/OnTop/Config/Command/DeleteMappingFields.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -78,6 +78,9 @@
 block discarded – undo
78 78
             && $this->mappingExists($mapping_tracker->getId());
79 79
     }
80 80
 
81
+    /**
82
+     * @param integer $mapping_tracker_id
83
+     */
81 84
     private function mappingExists($mapping_tracker_id) {
82 85
         return isset($this->existing_mappings[$mapping_tracker_id])
83 86
             && $this->existing_mappings[$mapping_tracker_id] instanceof Cardwall_OnTop_Config_TrackerMappingFreestyle;
Please login to merge, or discard this patch.
plugins/cardwall/include/OnTop/Config/TrackerMappingFactory.class.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      * Get all mappings defined for the cardwall on top of a tracker
66 66
      *
67 67
      * @param Tracker $tracker The tracker
68
-     * @param array   $columns array of Cardwall_Column
68
+     * @param Cardwall_OnTop_Config_ColumnCollection   $columns array of Cardwall_Column
69 69
      *
70 70
      * @return Cardwall_OnTop_Config_TrackerMapping[]
71 71
      */
@@ -113,6 +113,7 @@  discard block
 block discarded – undo
113 113
     }
114 114
 
115 115
     /**
116
+     * @param Tracker_FormElement_Field $mapping_field
116 117
      * @return Cardwall_OnTop_Config_TrackerMappingFreestyle
117 118
      */
118 119
     private function instantiateFreestyleMapping(Tracker $tracker, array &$mappings, Tracker $mapping_tracker, array $available_fields, $mapping_field) {
@@ -126,7 +127,7 @@  discard block
 block discarded – undo
126 127
     }
127 128
 
128 129
     /**
129
-     * @return Cardwall_OnTop_Config_TrackerMappingFreestyle
130
+     * @return Cardwall_OnTop_Config_TrackerMappingNoField
130 131
      */
131 132
     private function instantiateNoFieldMapping(Tracker $mapping_tracker, array $available_fields) {
132 133
         return new Cardwall_OnTop_Config_TrackerMappingNoField(
Please login to merge, or discard this patch.
plugins/cardwall/include/OnTop/Config/ValueMapping.class.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -65,10 +65,16 @@
 block discarded – undo
65 65
         return $this->matchLabel($artifact_status_label) || $this->matchNone($artifact_status_label);
66 66
     }
67 67
 
68
+    /**
69
+     * @param string $artifact_status_label
70
+     */
68 71
     private function matchLabel($artifact_status_label) {
69 72
         return $this->getValueLabel() == $artifact_status_label;
70 73
     }
71 74
 
75
+    /**
76
+     * @param string $artifact_status_label
77
+     */
72 78
     private function matchNone($artifact_status_label) {
73 79
         return $artifact_status_label === null && $this->getValueId() == 100;
74 80
     }
Please login to merge, or discard this patch.
plugins/cardwall/include/OnTop/Config/View/Admin.class.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@  discard block
 block discarded – undo
29 29
         return $this->generateAdminForm($config);
30 30
     }
31 31
 
32
+    /**
33
+     * @param Cardwall_OnTop_Config $config
34
+     */
32 35
     private function generateAdminForm($config) {
33 36
         $column_definition_view = new Cardwall_OnTop_Config_View_ColumnDefinition($config);
34 37
         $checked                = $config->isEnabled() ? 'checked="checked"' : '';
@@ -52,6 +55,8 @@  discard block
 block discarded – undo
52 55
     }
53 56
 
54 57
      /**
58
+     * @param string $page
59
+     * @param string $category
55 60
      * @return string
56 61
      */
57 62
     private function translate($page, $category, $args = "") {
Please login to merge, or discard this patch.
plugins/cardwall/include/OnTop/Config/View/ColumnDefinition.class.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -207,6 +207,9 @@  discard block
 block discarded – undo
207 207
         return $html;
208 208
     }
209 209
 
210
+    /**
211
+     * @param Cardwall_Column $column
212
+     */
210 213
     private function decorateEdit($column) {
211 214
         $id   = 'column_'. $column->id .'_field';
212 215
         $hexa = ColorHelper::CssRGBToHexa($column->bgcolor);
@@ -215,6 +218,10 @@  discard block
 block discarded – undo
215 218
         return $html;
216 219
     }
217 220
 
221
+    /**
222
+     * @param string $id
223
+     * @param string $classname
224
+     */
218 225
     private function fetchSquareColor($id, $title, $classname, $img = 'blank16x16.png') {
219 226
         $html = '';
220 227
         $bgcolor = "background-color:$title;";
@@ -261,6 +268,8 @@  discard block
 block discarded – undo
261 268
     }
262 269
 
263 270
     /**
271
+     * @param string $page
272
+     * @param string $category
264 273
      * @return string
265 274
      */
266 275
     protected function translate($page, $category, $args = "") {
Please login to merge, or discard this patch.
plugins/cardwall/include/OnTop/ConfigEmpty.class.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,8 +43,7 @@  discard block
 block discarded – undo
43 43
     /**
44 44
      * Get Frestyle columns for Cardwall_OnTop, or status columns if none
45 45
      * 
46
-     * @param Tracker $tracker
47
-     * @return Cardwall_OnTop_Config_ColumnCollection
46
+     * @return boolean
48 47
      */
49 48
     public function getDashboardColumns() {
50 49
         return false;
@@ -52,7 +51,7 @@  discard block
 block discarded – undo
52 51
 
53 52
     /**
54 53
      * Get Columns from the values of a $field
55
-     * @return Cardwall_OnTop_Config_ColumnCollection
54
+     * @return boolean
56 55
      */
57 56
     public function getRendererColumns(Tracker_FormElement_Field_List $cardwall_field) {
58 57
         return false;
@@ -91,7 +90,7 @@  discard block
 block discarded – undo
91 90
      *
92 91
      * @param array $fields array of Tracker_FormElement_Field_Selectbox
93 92
      *
94
-     * @return Cardwall_MappingCollection
93
+     * @return boolean
95 94
      */
96 95
     public function getCardwallMappings(array $fields, Cardwall_OnTop_Config_ColumnCollection $cardwall_columns) {
97 96
         return false;
Please login to merge, or discard this patch.
plugins/cardwall/include/OnTop/ConfigFactory.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @param Tracker $tracker
40
+     * @param Tracker $tracker_id
41 41
      * 
42 42
      * @return \Cardwall_OnTop_Config
43 43
      */
Please login to merge, or discard this patch.