Passed
Push — 1.10.x ( 55c17b...cec016 )
by Angel Fernando Quiroz
249:43 queued 200:32
created
main/gradebook/lib/be/forumthreadlink.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 
122 122
     /**
123 123
     * Has anyone done this exercise yet ?
124
-    * @return int
124
+    * @return boolean
125 125
     */
126 126
     public function has_results()
127 127
     {
Please login to merge, or discard this patch.
main/gradebook/lib/be/learnpathlink.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
 
96 96
 	/**
97 97
 	 * Get the progress of this learnpath. Only the last attempt are taken into account.
98
-	 * @param $stud_id student id (default: all students who have results - then the average is returned)
98
+	 * @param integer $stud_id student id (default: all students who have results - then the average is returned)
99 99
 	 * @return	array (score, max) if student is given
100 100
 	 * 			array (sum of scores, number of scores) otherwise
101 101
 	 * 			or null if no scores available
Please login to merge, or discard this patch.
main/gradebook/lib/be/result.class.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@
 block discarded – undo
59 59
         $this->evaluation = $evaluation_id;
60 60
     }
61 61
 
62
+    /**
63
+     * @param string $creation_date
64
+     */
62 65
     public function set_date($creation_date)
63 66
     {
64 67
         $this->created_at = $creation_date;
Please login to merge, or discard this patch.
main/gradebook/lib/fe/gradebooktable.class.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,6 +32,8 @@  discard block
 block discarded – undo
32 32
      * @param array $evals
33 33
      * @param array $links
34 34
      * @param null $addparams
35
+     * @param boolean $showTeacherView
36
+     * @param integer $userId
35 37
      */
36 38
     public function __construct(
37 39
         $currentcat,
@@ -895,7 +897,7 @@  discard block
 block discarded – undo
895 897
 
896 898
     /**
897 899
      * @param $item
898
-     * @return mixed
900
+     * @return string|null
899 901
      */
900 902
     private function build_course_code($item)
901 903
     {
Please login to merge, or discard this patch.
main/gradebook/lib/fe/linkform.class.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,8 +124,8 @@
 block discarded – undo
124 124
 	}
125 125
 
126 126
 	/**
127
-	 * @param $link
128
-	 * @param $courseCode
127
+	 * @param integer $link
128
+	 * @param null|string $courseCode
129 129
 	 * @return AttendanceLink|DropboxLink|ExerciseLink|ForumThreadLink|LearnpathLink|null|StudentPublicationLink|SurveyLink
130 130
 	 */
131 131
 	private function createLink($link, $courseCode)
Please login to merge, or discard this patch.
main/gradebook/lib/flatview_data_generator.class.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      * @param array $evals
31 31
      * @param array $links
32 32
      * @param array $params
33
-     * @param null $mainCourseCategory
33
+     * @param Category|null $mainCourseCategory
34 34
      */
35 35
     public function FlatViewDataGenerator(
36 36
         $users = array(),
@@ -276,6 +276,8 @@  discard block
 block discarded – undo
276 276
 
277 277
     /**
278 278
      * Get actual array data
279
+     * @param integer $users_count
280
+     * @param integer $items_count
279 281
      * @return array 2-dimensional array - each array contains the elements:
280 282
      * 0: user id
281 283
      * 1: user lastname
Please login to merge, or discard this patch.
main/gradebook/lib/gradebook_data_generator.class.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,6 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
     /**
73 73
      * Get actual array data
74
+     * @param integer $count
74 75
      * @return array 2-dimensional array - each array contains the elements:
75 76
      * 0: cat/eval/link object
76 77
      * 1: item name
@@ -304,7 +305,7 @@  discard block
 block discarded – undo
304 305
     /**
305 306
      * @param int $userId
306 307
      * @param GradebookItem $item
307
-     * @param $ignore_score_color
308
+     * @param boolean $ignore_score_color
308 309
      * @return null|string
309 310
      */
310 311
     private function build_result_column(
Please login to merge, or discard this patch.
main/gradebook/lib/gradebook_result.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
 
77 77
     /**
78 78
      * Exports the complete report as an XLS file
79
-     * @return	boolean		False on error
79
+     * @return	boolean|null		False on error
80 80
      */
81 81
     public function exportCompleteReportXLS($data)
82 82
     {
Please login to merge, or discard this patch.
main/gradebook/lib/GradebookUtils.php 1 patch
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@  discard block
 block discarded – undo
19 19
      * @param   int     Visibility (0 hidden, 1 shown)
20 20
      * @param   int     Session ID (optional or 0 if not defined)
21 21
      * @param   int
22
+     * @param integer $resource_type
22 23
      * @return  boolean True on success, false on failure
23 24
      */
24 25
     public static function add_resource_to_course_gradebook(
@@ -117,7 +118,6 @@  discard block
 block discarded – undo
117 118
 
118 119
     /**
119 120
      * Builds an img tag for a gradebook item
120
-     * @param string $type value returned by a gradebookitem's get_icon_name()
121 121
      */
122 122
     public static function build_type_icon_tag($kind, $attributes = array())
123 123
     {
@@ -382,6 +382,7 @@  discard block
 block discarded – undo
382 382
      * @param    int     Resource type (use constants defined in linkfactory.class.php)
383 383
      * @param    int     Resource ID in the corresponding tool
384 384
      * @param    int     Session ID (optional -  0 if not defined)
385
+     * @param integer $resource_type
385 386
      * @return   int     false on error or array of resource
386 387
      */
387 388
     public static function is_resource_in_course_gradebook($course_code, $resource_type, $resource_id, $session_id = 0)
@@ -579,6 +580,9 @@  discard block
 block discarded – undo
579 580
      * @param int The user id
580 581
      * @param float The score obtained for certified
581 582
      * @param Datetime The date when you obtained the certificate
583
+     * @param integer $cat_id
584
+     * @param integer $user_id
585
+     * @param string $date_certificate
582 586
      * @return void()
583 587
      */
584 588
     public static function register_user_info_about_certificate($cat_id, $user_id, $score_certificate, $date_certificate)
@@ -955,7 +959,7 @@  discard block
 block discarded – undo
955 959
     }
956 960
 
957 961
     /**
958
-     * @param array $list_values
962
+     * @param string[] $list_values
959 963
      * @return string
960 964
      */
961 965
     public static function score_badges($list_values)
@@ -1015,7 +1019,7 @@  discard block
 block discarded – undo
1015 1019
     }
1016 1020
 
1017 1021
     /**
1018
-     * @param $result
1022
+     * @param Doctrine\DBAL\Driver\Statement|null $result
1019 1023
      * @return array
1020 1024
      */
1021 1025
     public static function get_user_array_from_sql_result($result)
Please login to merge, or discard this patch.