@@ -21,7 +21,7 @@ |
||
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 |
@@ -22,7 +22,7 @@ |
||
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 | { |
@@ -40,7 +40,7 @@ |
||
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 | { |
@@ -39,7 +39,7 @@ discard block |
||
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 |
||
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 | { |
@@ -117,7 +117,7 @@ |
||
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 | { |
@@ -9,6 +9,7 @@ discard block |
||
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 |
||
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 |
||
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 | { |
@@ -8,6 +8,7 @@ discard block |
||
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 |
||
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 |
||
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 | { |
@@ -12,7 +12,7 @@ discard block |
||
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 |
||
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 |
||
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 | { |
@@ -227,7 +227,7 @@ |
||
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 | { |