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
cardwall/db/mysql/updates/2013/201308271726_set_default_semantic.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -36,6 +36,10 @@
 block discarded – undo
36 36
         $this->addCardField('impediment', 2);
37 37
     }
38 38
 
39
+    /**
40
+     * @param string $name
41
+     * @param integer $rank
42
+     */
39 43
     private function addCardField($name, $rank) {
40 44
         $sql = "INSERT INTO plugin_cardwall_semantic_cardfields(tracker_id, field_id, rank)
41 45
                 SELECT tracker_id, id, $rank
Please login to merge, or discard this patch.
plugins/cardwall/include/CardController.class.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -59,10 +59,16 @@
 block discarded – undo
59 59
         $GLOBALS['Response']->sendJSON($json_format);
60 60
     }
61 61
 
62
+    /**
63
+     * @param Tracker_FormElement_Field $field
64
+     */
62 65
     private function addJsonFieldValues(&$json_format, $field) {
63 66
         $json_format['fields'][$field->getName()] = $this->single_card->getFieldJsonValue($this->request->getCurrentUser(), $field);
64 67
     }
65 68
 
69
+    /**
70
+     * @param Tracker_FormElement_Field $field
71
+     */
66 72
     private function addHTMLFieldValues(&$json_format, $field) {
67 73
         $json_format['html_fields'][$field->getName()] = $this->single_card->getFieldHTMLValue($this->request->getCurrentUser(), $field);
68 74
     }
Please login to merge, or discard this patch.
plugins/cardwall/include/CardInCellPresenterBuilder.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@
 block discarded – undo
69 69
         return $presenters;
70 70
     }
71 71
 
72
+    /**
73
+     * @param integer $swimline_id
74
+     */
72 75
     private function getCardPresenter(Tracker_Artifact $artifact, $swimline_id) {
73 76
         $color = $artifact->getCardAccentColor($this->user);
74 77
 
Please login to merge, or discard this patch.
plugins/cardwall/include/CardPresenter.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
 
44 44
     private $swimline_id;
45 45
 
46
+    /**
47
+     * @param string $accent_color
48
+     */
46 49
     public function __construct(Tracker_Artifact $artifact, Cardwall_CardFields $card_fields, $accent_color, Cardwall_UserPreferences_UserPreferencesDisplayUser $display_preferences, $swimline_id, array $allowed_children, Tracker_Artifact $parent = null) {
47 50
         $this->artifact            = $artifact;
48 51
         $this->parent              = $parent;
Please login to merge, or discard this patch.
plugins/cardwall/include/Cardwall_Renderer.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -101,6 +101,9 @@
 block discarded – undo
101 101
         return $this->fetchCards($matching_ids, $user, $form);
102 102
     }
103 103
     
104
+    /**
105
+     * @param Cardwall_Form $form
106
+     */
104 107
     private function fetchCards($matching_ids, PFUser $user, $form = null) {
105 108
         $total_rows = $matching_ids['id'] ? substr_count($matching_ids['id'], ',') + 1 : 0;
106 109
         if (!$total_rows) {
Please login to merge, or discard this patch.
plugins/cardwall/include/Cardwall_RendererDao.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
         return $this->update($sql);
45 45
     }
46 46
     
47
+    /**
48
+     * @param integer $renderer_id
49
+     */
47 50
     function save($renderer_id, $field_id) {
48 51
         $renderer_id = $this->da->escapeInt($renderer_id);
49 52
         $field_id     = $this->da->escapeInt($field_id);
Please login to merge, or discard this patch.
plugins/cardwall/include/CardwallPluginInfo.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
  */
26 26
 class CardwallPluginInfo extends PluginFileInfo {
27 27
     
28
+    /**
29
+     * @param cardwallPlugin $plugin
30
+     */
28 31
     function __construct($plugin) {
29 32
         parent::__construct($plugin, 'config');
30 33
         $this->setPluginDescriptor(new CardwallPluginDescriptor());
Please login to merge, or discard this patch.
plugins/cardwall/include/Column.class.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -64,6 +64,9 @@  discard block
 block discarded – undo
64 64
         $this->fgcolor   = $fgcolor;
65 65
     }
66 66
 
67
+    /**
68
+     * @param boolean|string $value
69
+     */
67 70
     public function setAutostack($value) {
68 71
         $this->autostack = $value;
69 72
         return $this;
@@ -108,6 +111,9 @@  discard block
 block discarded – undo
108 111
         return $is_mapped || $this->matchesStatus($artifact_status);
109 112
     }
110 113
 
114
+    /**
115
+     * @param string $artifact_status
116
+     */
111 117
     private function matchesStatus($artifact_status) {
112 118
         return $this->matchesLabel($artifact_status) || $this->matchesTheNoneColumn($artifact_status);
113 119
     }
Please login to merge, or discard this patch.
plugins/cardwall/include/Form.class.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -63,6 +63,10 @@
 block discarded – undo
63 63
      */
64 64
     public $submit;
65 65
 
66
+    /**
67
+     * @param integer $renderer_id
68
+     * @param Tracker_FormElement_Field|null $field
69
+     */
66 70
     public function __construct($report_id, $renderer_id, $printer_version, $field, array $selectboxes) {
67 71
         $this->report_id           = (int)$report_id;
68 72
         $this->renderer_id         = (int)$renderer_id;
Please login to merge, or discard this patch.