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/docman/include/SystemCheck.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -65,6 +65,7 @@
 block discarded – undo
65 65
 
66 66
     /**
67 67
      * @throws Docman_FolderNotCreatedException
68
+     * @param string $folder_path
68 69
      */
69 70
     private function createFolderWithRightAccessRights($folder_path, $project_unix_name) {
70 71
         if (! mkdir($folder_path)) {
Please login to merge, or discard this patch.
plugins/docman/include/view/Docman_View_Details.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
         return $GLOBALS['Language']->getText('plugin_docman', 'details_title',  $hp->purify($params['item']->getTitle(), CODENDI_PURIFIER_CONVERT_HTML) );
31 31
     }
32 32
     
33
+    /**
34
+     * @param string $section
35
+     */
33 36
     function _content($params, $view = null, $section = null) {
34 37
         $url = $params['default_url'];
35 38
         
Please login to merge, or discard this patch.
plugins/docman/include/view/Docman_View_GetMenuItemsVisitor.class.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -10,6 +10,10 @@
 block discarded – undo
10 10
 
11 11
 class Docman_View_GetMenuItemsVisitor /* implements Visitor*/ {
12 12
     var $actions;
13
+
14
+    /**
15
+     * @param integer $groupId
16
+     */
13 17
     function Docman_View_GetMenuItemsVisitor(&$user, $groupId) {
14 18
         $this->dPm =& Docman_PermissionsManager::instance($groupId);
15 19
         $this->user =& $user;
Please login to merge, or discard this patch.
plugins/docman/include/view/Docman_View_ItemDetailsSectionActions.class.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -28,6 +28,11 @@
 block discarded – undo
28 28
     var $is_moveable;
29 29
     var $is_deleteable;
30 30
     var $_controller;
31
+
32
+    /**
33
+     * @param boolean $is_moveable
34
+     * @param boolean $is_deleteable
35
+     */
31 36
     function Docman_View_ItemDetailsSectionActions(&$item, $url, $is_moveable, $is_deleteable, &$controller) {
32 37
         $this->is_moveable   = $is_moveable;
33 38
         $this->is_deleteable = $is_deleteable;
Please login to merge, or discard this patch.
docman/include/view/Docman_View_ItemDetailsSectionApproval.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -250,6 +250,9 @@
 block discarded – undo
250 250
         return $version;
251 251
     }
252 252
     
253
+    /**
254
+     * @param PFUser $user
255
+     */
253 256
     function getReviewForm($user) {
254 257
         $html = '';
255 258
         $uh   = UserHelper::instance();
Please login to merge, or discard this patch.
plugins/docman/include/view/Docman_View_ItemDetailsSectionPaste.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@
 block discarded – undo
47 47
         $this->mode  = $mode;
48 48
     }
49 49
 
50
+    /**
51
+     * @param boolean $mdDiffers
52
+     */
50 53
     function checkMdDifferences(&$mdDiffers) {
51 54
         $html = '';
52 55
 
Please login to merge, or discard this patch.
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.