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 ( 7a10f1...c2f16b )
by
unknown
76:46
created
plugins/proftpd/include/ProFTPd/SystemEvent/PROFTPD_UPDATE_ACL.class.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 
22 22
 namespace Tuleap\ProFTPd\SystemEvent;
23 23
 
24
-use Backend;
25 24
 use RuntimeException;
26 25
 use Tuleap\ProFTPd\Admin;
27 26
 use ProjectManager;
Please login to merge, or discard this patch.
plugins/proftpd/include/ProFTPd/Xferlog/Dao.class.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -39,6 +39,10 @@  discard block
 block discarded – undo
39 39
         return 0;
40 40
     }
41 41
 
42
+    /**
43
+     * @param integer $user_id
44
+     * @param integer $group_id
45
+     */
42 46
     public function storeWebDownload($user_id, $group_id, $current_time, $file_path) {
43 47
         $user_id      = $this->da->escapeInt($user_id);
44 48
         $group_id     = $this->da->escapeInt($group_id);
@@ -69,6 +73,10 @@  discard block
 block discarded – undo
69 73
         return $this->update($sql);
70 74
     }
71 75
 
76
+    /**
77
+     * @param integer $user_id
78
+     * @param integer $group_id
79
+     */
72 80
     public function store(
73 81
         $user_id,
74 82
         $group_id,
Please login to merge, or discard this patch.
plugins/proftpd/include/ProFTPd/Xferlog/FileImporter.class.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@  discard block
 block discarded – undo
48 48
     /** @var string */
49 49
     private $base_dir;
50 50
 
51
+    /**
52
+     * @param string $base_dir
53
+     */
51 54
     public function __construct(Dao $dao, Parser $parser, UserManager $user_manager, ProjectManager $project_manager, $base_dir) {
52 55
         $this->dao             = $dao;
53 56
         $this->parser          = $parser;
@@ -64,6 +67,9 @@  discard block
 block discarded – undo
64 67
         return $this->errors;
65 68
     }
66 69
 
70
+    /**
71
+     * @param string $filepath
72
+     */
67 73
     public function import($filepath) {
68 74
         $latest_timestamp = $this->dao->searchLatestEntryTimestamp();
69 75
         $this->parseFile($filepath, $latest_timestamp);
@@ -82,6 +88,9 @@  discard block
 block discarded – undo
82 88
         fclose($fd);
83 89
     }
84 90
 
91
+    /**
92
+     * @param string $line
93
+     */
85 94
     private function parseLine($line, $latest_timestamp) {
86 95
         try {
87 96
             $entry = $this->parser->extract(trim($line));
Please login to merge, or discard this patch.
plugins/proftpd/include/ProftpdPluginInfo.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 
21 21
 class ProftpdPluginInfo extends PluginFileInfo {
22 22
 
23
+    /**
24
+     * @param proftpdPlugin $plugin
25
+     */
23 26
     function __construct($plugin) {
24 27
         parent::__construct($plugin, 'config');
25 28
         $this->setPluginDescriptor(new ProftpdPluginDescriptor());
Please login to merge, or discard this patch.
plugins/projectlinks/include/form_utils.php 1 patch
Doc Comments   +25 added lines patch added patch discarded remove patch
@@ -249,6 +249,9 @@  discard block
 block discarded – undo
249 249
 }
250 250
 
251 251
 //=============================================================================
252
+/**
253
+ * @param integer $HaveResetButton
254
+ */
252 255
 function form_End($SubmitLegend = DEFAULT_SUBMIT_BUTTON,
253 256
     $HaveResetButton = FORM_HAVE_RESET_BUTTON)
254 257
 {
@@ -402,6 +405,10 @@  discard block
 block discarded – undo
402 405
     var $Param;
403 406
 }
404 407
 
408
+/**
409
+ * @param string $ParamName
410
+ * @param integer $Tests
411
+ */
405 412
 function form_Validation($ParamName, $Tests, $OptionalParam = NULL)
406 413
 {
407 414
     global $gValidationCollection, $gInForm;
@@ -663,6 +670,9 @@  discard block
 block discarded – undo
663 670
 }
664 671
 
665 672
 //=============================================================================
673
+/**
674
+ * @param string $JavaScript
675
+ */
666 676
 function form_genJSButton($Caption, $JavaScript, $ImageFileHTMLPath = NULL)
667 677
 {
668 678
 // JavaScript must use only single quotes, since the double quotes are used to enclose it
@@ -735,6 +745,11 @@  discard block
 block discarded – undo
735 745
 }
736 746
 
737 747
 //=============================================================================
748
+/**
749
+ * @param string $ParamName
750
+ * @param string $Caption
751
+ * @param integer $Width
752
+ */
738 753
 function form_genTextBox($ParamName, $Caption, $DefaultValue = "", $Width = FORM_TEXT_AREA_WIDTH, $MaxInputLength = 0)
739 754
 {
740 755
 //
@@ -939,6 +954,10 @@  discard block
 block discarded – undo
939 954
 }
940 955
 
941 956
 //=============================================================================
957
+/**
958
+ * @param string $ParamName
959
+ * @param string $Caption
960
+ */
942 961
 function form_genTextArea($ParamName, $Caption, $DefaultValue = "", $MinRows = FORM_TEXT_AREA_DEPTH, $Cols = FORM_TEXT_AREA_WIDTH)
943 962
 {
944 963
     global $gInForm, $gFormCaptions, $gFirstFormTextBox;
@@ -976,6 +995,9 @@  discard block
 block discarded – undo
976 995
 }
977 996
 
978 997
 //=============================================================================
998
+/**
999
+ * @param integer $BorderWidth
1000
+ */
979 1001
 function form_TableStart($BorderWidth)
980 1002
 {
981 1003
     print "\n<table border='$BorderWidth' cellspacing='1' cellpadding='2'><tr style='vertical-align: top;'>\n";
@@ -1065,6 +1087,9 @@  discard block
 block discarded – undo
1065 1087
 **/
1066 1088
 
1067 1089
 //=============================================================================
1090
+/**
1091
+ * @param string $tableName
1092
+ */
1068 1093
 function update_database($tableName, $items, $selectCriteria = "")
1069 1094
 {
1070 1095
     //
Please login to merge, or discard this patch.
plugins/projectlinks/include/ProjectLinks_Widget_HomePageLinks.class.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -106,7 +106,6 @@  discard block
 block discarded – undo
106 106
      * Build the top list of link for the 2 ways (links and back_links).
107 107
      * 
108 108
      * @param  String $way Either 'links' or 'back_links'
109
-     * @param  String $sql The SQL to get the links
110 109
      * @return String
111 110
      */
112 111
     function getLinksByLinkType($way, DataAccessResult $dar) {
@@ -137,7 +136,6 @@  discard block
 block discarded – undo
137 136
      * "back links"
138 137
      * 
139 138
      * @param  String $way Either 'links' or 'back_links'
140
-     * @param  String $res One row of link
141 139
      * @return String
142 140
      */
143 141
     function getLinks($way, DataAccessResult $dar) {
Please login to merge, or discard this patch.
plugins/projectlinks/include/projectlinksPlugin.class.php 1 patch
Doc Comments   +25 added lines, -1 removed lines patch added patch discarded remove patch
@@ -314,6 +314,10 @@  discard block
 block discarded – undo
314 314
     }
315 315
 
316 316
     //========================================================================
317
+
318
+    /**
319
+     * @param string $icon
320
+     */
317 321
     function _icon($icon, $params = NULL) {
318 322
         // returns the HTML to display the named icon
319 323
         global $Language;
@@ -378,6 +382,11 @@  discard block
 block discarded – undo
378 382
     }
379 383
 
380 384
     //========================================================================
385
+
386
+    /**
387
+     * @param integer $group_id
388
+     * @param Project $project
389
+     */
381 390
     function _adminPage_Default($group_id, $project) {
382 391
         // show the default configuration page
383 392
         global $HTML, $Language;
@@ -457,6 +466,11 @@  discard block
 block discarded – undo
457 466
     }
458 467
 
459 468
     //========================================================================
469
+
470
+    /**
471
+     * @param integer $group_id
472
+     * @param integer|null $link_type_id
473
+     */
460 474
     function _adminPage_UpdateLinkType($group_id, $link_type_id) {
461 475
         global $HTML, $Language;
462 476
 
@@ -590,6 +604,11 @@  discard block
 block discarded – undo
590 604
     }
591 605
 
592 606
     //========================================================================
607
+
608
+    /**
609
+     * @param integer $group_id
610
+     * @param integer $template_id
611
+     */
593 612
     function _adminPage_ResyncTemplate($group_id, $template_id) {
594 613
         // re-synchronise project links and types with originating template
595 614
         global $HTML, $Language;
@@ -821,6 +840,12 @@  discard block
 block discarded – undo
821 840
     }
822 841
 
823 842
     //========================================================================
843
+
844
+    /**
845
+     * @param integer $group_id
846
+     * @param integer $link_type_id
847
+     * @param integer $link_id
848
+     */
824 849
     function _link_unique_update($group_id, $target_group_id, $link_type_id, $link_id = NULL) {
825 850
         // update link, but check the change would not create a duplicate
826 851
         // (same target project and link type)
@@ -865,7 +890,6 @@  discard block
 block discarded – undo
865 890
     /**
866 891
      * Display the project linked by the current projet to update or delete them
867 892
      *
868
-     * @param  Integer $group_id Group id
869 893
      * @return String
870 894
      */
871 895
     function _admin_links_table($link_type_id) {
Please login to merge, or discard this patch.
plugins/projectlinks/include/ProjectLinksPluginInfo.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@
 block discarded – undo
28 28
 
29 29
 class ProjectLinksPluginInfo extends PluginInfo {
30 30
     
31
+    /**
32
+     * @param ProjectLinksPlugin $plugin
33
+     */
31 34
     function ProjectLinksPluginInfo(&$plugin) {
32 35
         $this->PluginInfo($plugin);
33 36
         $this->setPluginDescriptor(new ProjectLinksPluginDescriptor());
Please login to merge, or discard this patch.
plugins/statistics/include/ProjectQuotaHtml.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -266,7 +266,7 @@
 block discarded – undo
266 266
      * @param String $sortBy             Order result set according to this parameter
267 267
      * @param String $orderBy            Specifiy if the result set sort is ascending or descending
268 268
      * @param String $projectFilterParam Search filter
269
-     * @param Array  $list               List of projects Id corresponding to a given filter
269
+     * @param Iterator  $list               List of projects Id corresponding to a given filter
270 270
      *
271 271
      * @return Array
272 272
      */
Please login to merge, or discard this patch.