Completed
Push — 1.11.x ( c5cfcc...1cf9be )
by José
46:45 queued 17:54
created
main/inc/lib/SmsPluginLibraryInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * @param array $additionalParameters
23 23
      *
24
-     * @return mixed
24
+     * @return void
25 25
      */
26 26
     public function send($additionalParameters);
27 27
 
Please login to merge, or discard this patch.
plugin/resubscription/src/HookResubscription.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
     /**
24 24
      * Limit session resubscription when a Chamilo user is resubscribed to a session
25
-     * @param HookCreateUserEventInterface $hook The hook
25
+     * @param HookResubscribeEventInterface $hook The hook
26 26
      */
27 27
     public function hookResubscribe(HookResubscribeEventInterface $hook)
28 28
     {
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Entity/AccessUrlRelCourseCategory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      * Set accessUrlId
41 41
      *
42 42
      * @param integer $accessUrlId
43
-     * @return AccessUrlRelSession
43
+     * @return AccessUrlRelCourseCategory
44 44
      */
45 45
     public function setAccessUrlId($accessUrlId)
46 46
     {
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Entity/ClassItem.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      * Set code
40 40
      *
41 41
      * @param string $code
42
-     * @return Class
42
+     * @return ClassItem
43 43
      */
44 44
     public function setCode($code)
45 45
     {
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * Set name
63 63
      *
64 64
      * @param string $name
65
-     * @return Class
65
+     * @return ClassItem
66 66
      */
67 67
     public function setName($name)
68 68
     {
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Entity/UsergroupRelUser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
      * Set relationType
118 118
      *
119 119
      * @param integer $relationType
120
-     * @return GroupRelUser
120
+     * @return UsergroupRelUser
121 121
      */
122 122
     public function setRelationType($relationType)
123 123
     {
Please login to merge, or discard this patch.
main/admin/course_user_import.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,6 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 /**
11 11
  * Validates the imported data.
12
+ * @param Ddeboer\DataImport\Reader\CsvReader $users_courses
12 13
  */
13 14
 function validate_data($users_courses)
14 15
 {
@@ -65,6 +66,7 @@  discard block
 block discarded – undo
65 66
 
66 67
 /**
67 68
  * Saves imported data.
69
+ * @param Ddeboer\DataImport\Reader\CsvReader $users_courses
68 70
  */
69 71
 function save_data($users_courses)
70 72
 {
@@ -133,7 +135,7 @@  discard block
 block discarded – undo
133 135
 /**
134 136
  * Reads CSV-file.
135 137
  * @param string $file Path to the CSV-file
136
- * @return array All course-information read from the file
138
+ * @return Ddeboer\DataImport\Reader\CsvReader All course-information read from the file
137 139
  */
138 140
 function parse_csv_data($file)
139 141
 {
Please login to merge, or discard this patch.
main/admin/course_user_import_by_email.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,7 @@  discard block
 block discarded – undo
8 8
  */
9 9
 /**
10 10
  * Validates the imported data.
11
+ * @param Ddeboer\DataImport\Reader\CsvReader $users_courses
11 12
  */
12 13
 function validate_data($users_courses)
13 14
 {
@@ -66,6 +67,7 @@  discard block
 block discarded – undo
66 67
 
67 68
 /**
68 69
  * Saves imported data.
70
+ * @param Ddeboer\DataImport\Reader\CsvReader $users_courses
69 71
  */
70 72
 function save_data($users_courses)
71 73
 {
@@ -134,7 +136,7 @@  discard block
 block discarded – undo
134 136
 /**
135 137
  * Reads CSV-file.
136 138
  * @param string $file Path to the CSV-file
137
- * @return array All course-information read from the file
139
+ * @return Ddeboer\DataImport\Reader\CsvReader All course-information read from the file
138 140
  */
139 141
 function parse_csv_data($file)
140 142
 {
Please login to merge, or discard this patch.
main/admin/skills_import.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 /**
14 14
  * Validate the imported data.
15
- * @param $skills
15
+ * @param Ddeboer\DataImport\Reader\CsvReader $skills
16 16
  * @return array
17 17
  */
18 18
 function validate_data($skills)
@@ -50,6 +50,7 @@  discard block
 block discarded – undo
50 50
 /**
51 51
  * Save the imported data
52 52
  * @param   array   List of users
53
+ * @param Ddeboer\DataImport\Reader\CsvReader $skills
53 54
  * @return  void
54 55
  * @uses global variable $inserted_in_course,
55 56
  * which returns the list of courses the user was inserted in
@@ -77,7 +78,7 @@  discard block
 block discarded – undo
77 78
 /**
78 79
  * Read the CSV-file
79 80
  * @param string $file Path to the CSV-file
80
- * @return array All userinformation read from the file
81
+ * @return Ddeboer\DataImport\Reader\CsvReader All userinformation read from the file
81 82
  */
82 83
 function parse_csv_data($file)
83 84
 {
Please login to merge, or discard this patch.
main/admin/user_import.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@
 block discarded – undo
227 227
 /**
228 228
  * Read the CSV-file
229 229
  * @param string $file Path to the CSV-file
230
- * @return array All userinformation read from the file
230
+ * @return Ddeboer\DataImport\Reader\CsvReader All userinformation read from the file
231 231
  */
232 232
 function parse_csv_data($file)
233 233
 {
Please login to merge, or discard this patch.