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
plugins/docman/include/view/Docman_View_ItemRanking.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
33 33
         $this->selectedValue = 'beginning';
34 34
     }
35 35
 
36
+    /**
37
+     * @param string $v
38
+     */
36 39
     function setDropDownName($v) {
37 40
         $this->dropDownName = $v;
38 41
     }
Please login to merge, or discard this patch.
plugins/docman/include/view/Docman_View_ItemTreeUlVisitor.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@
 block discarded – undo
37 37
     var $get_class_for_link;
38 38
     var $hp;
39 39
 
40
+    /**
41
+     * @param Docman_View_RawTree $view
42
+     */
40 43
     function Docman_View_ItemTreeUlVisitor($view, $params = null) {
41 44
         $this->view                =& $view;
42 45
         $this->get_action_on_icon =& new Docman_View_GetActionOnIconVisitor();
Please login to merge, or discard this patch.
plugins/docman/include/view/Docman_View_ReportSettings.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -54,6 +54,8 @@  discard block
 block discarded – undo
54 54
 
55 55
     /**
56 56
      *
57
+     * @param ArrayIterator $reportIter
58
+     * @param boolean $isAdmin
57 59
      */
58 60
     function _getReportTableContent($reportIter, $isAdmin, &$altRowClass) {
59 61
         $hp = Codendi_HTMLPurifier::instance();
@@ -119,6 +121,7 @@  discard block
 block discarded – undo
119 121
 
120 122
     /**
121 123
      *
124
+     * @param integer $reportId
122 125
      */
123 126
     function _getReportSettings($reportId) {
124 127
         $html = '';
Please login to merge, or discard this patch.
plugins/docman/tests/Docman_SOAPActionsTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -63,6 +63,10 @@
 block discarded – undo
63 63
     private $fileStorage;
64 64
     private $lockFactory;
65 65
 
66
+    /**
67
+     * @param string $className
68
+     * @param string[] $methods
69
+     */
66 70
     function getPartialMock($className, $methods) {
67 71
         $partialName = $className.'Partial'.uniqid();
68 72
         Mock::generatePartial($className, $partialName, $methods);
Please login to merge, or discard this patch.
plugins/docman/tests/NotificationsManager_MoveTest.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,8 +190,14 @@
 block discarded – undo
190 190
     * @param lb   b is listened 0|1
191 191
     * @param lc   c is listened 0|1
192 192
     * @param ld   d is listened 0|1
193
-    * @param res  expected result: item | from | from_wo_c | to | to_wo_b | none
193
+    * @param res  string result: item | from | from_wo_c | to | to_wo_b | none
194 194
     * @param msg  message to display if the test fail
195
+    * @param integer $dr
196
+    * @param integer $br
197
+    * @param integer $cr
198
+    * @param integer $lb
199
+    * @param integer $lc
200
+    * @param integer $ld
195 201
     */
196 202
     function _runTest($dr, $br, $cr, $lb, $lc, $ld, $res, $msg = "%s") {
197 203
         $msg = "[$dr, $br, $cr, $lb, $lc, $ld, $res] ". $msg;
Please login to merge, or discard this patch.
plugins/forumml/include/ForumML_FileStorage.class.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,8 +49,10 @@  discard block
 block discarded – undo
49 49
      * @param list: mailing-list name
50 50
      * @param date: date of attachment in YYYY_MM_DD format
51 51
      * @param encod: encoding of attachment
52
+     * @param string $filename
53
+     * @param string $date
52 54
      * 
53
-     * @return int size of attached file
55
+     * @return string|false size of attached file
54 56
      */
55 57
     function store($filename, $content, $list, $date, $encod="") {
56 58
         $path = $this->_getPath($filename, $list, $date, "store");
@@ -91,6 +93,7 @@  discard block
 block discarded – undo
91 93
      * @param list: mailing-list name
92 94
      * @param date: attachment date (YYYY_MM_DD)
93 95
      * @param string type: upload/store 
96
+     * @param string $type
94 97
      * 
95 98
      * @return string path
96 99
      */
@@ -135,6 +138,9 @@  discard block
 block discarded – undo
135 138
         return $path.$name.$ext;
136 139
     }
137 140
 
141
+    /**
142
+     * @param string $path
143
+     */
138 144
     function fileExists($path) {
139 145
         return is_file($path);
140 146
     }
Please login to merge, or discard this patch.
plugins/forumml/include/ForumML_HTMLPurifier.class.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -67,6 +67,8 @@
 block discarded – undo
67 67
 	
68 68
     /**
69 69
      * HTML Purifier configuration factory
70
+     * @param integer $level
71
+     * @return integer
70 72
      */
71 73
     function getHPConfig($level) {
72 74
         $config = null;
Please login to merge, or discard this patch.
plugins/forumml/include/ForumMLInsert.class.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -49,6 +49,12 @@  discard block
 block discarded – undo
49 49
     }
50 50
 
51 51
     // Insert values into forumml_attachment table 
52
+
53
+    /**
54
+     * @param integer $id_message
55
+     * @param string $filename
56
+     * @param string|false $filepath
57
+     */
52 58
     function insertAttachment($id_message, $filename,$filetype,$filepath,$content_id="") {
53 59
         if (is_file($filepath)) {
54 60
             $filesize = filesize($filepath);
@@ -104,6 +110,9 @@  discard block
 block discarded – undo
104 110
         return false;
105 111
     }
106 112
 
113
+    /**
114
+     * @param integer $date
115
+     */
107 116
     function updateParentDate($messageId, $date) {
108 117
         if ($messageId != 0) {
109 118
             $sql = 'SELECT id_parent, last_thread_update FROM plugin_forumml_message WHERE id_message = '.$messageId;
Please login to merge, or discard this patch.
plugins/forumml/include/ForumMLPluginInfo.class.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@  discard block
 block discarded – undo
24 24
 
25 25
 class ForumMLPluginInfo extends PluginInfo {
26 26
     
27
+    /**
28
+     * @param ForumMLPlugin $plugin
29
+     */
27 30
     function __construct($plugin) {
28 31
         parent::__construct($plugin);
29 32
         $this->setPluginDescriptor(new ForumMLPluginDescriptor());
@@ -82,6 +85,9 @@  discard block
 block discarded – undo
82 85
         }	
83 86
 	}
84 87
     
88
+	/**
89
+	 * @param string $name
90
+	 */
85 91
 	function getPropertyValueForName($name) {
86 92
         $desc = $this->getPropertyDescriptorForName($name);
87 93
         return $desc ? $desc->getValue() : $desc;
Please login to merge, or discard this patch.