@@ -56,6 +56,9 @@ |
||
56 | 56 | return $this->get(array('shibb_unique_id' => $id)); |
57 | 57 | } |
58 | 58 | |
59 | + /** |
|
60 | + * @param string $id |
|
61 | + */ |
|
59 | 62 | public function shibboleth_id_exists($id) |
60 | 63 | { |
61 | 64 | return $this->exist(array('shibb_unique_id' => $id)); |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | |
129 | 129 | /** |
130 | 130 | * |
131 | - * @param ShibbolethUser $user |
|
131 | + * @param ShibbolethUser $shibb_user |
|
132 | 132 | */ |
133 | 133 | public static function save($shibb_user) |
134 | 134 | { |
@@ -230,6 +230,7 @@ discard block |
||
230 | 230 | * Sends an email to the Chamilo and Shibboleth administrators in the name |
231 | 231 | * of the logged-in user. |
232 | 232 | * |
233 | + * @param string $subject |
|
233 | 234 | */ |
234 | 235 | public static function email_admin($subject, $message) |
235 | 236 | { |
@@ -35,7 +35,7 @@ |
||
35 | 35 | * Creates the 'shibb_unique_id' field in the table 'user' of the main Chamilo database if it doesn't exist yet |
36 | 36 | * |
37 | 37 | * @author Nicolas Rod |
38 | - * @return void |
|
38 | + * @return false|null |
|
39 | 39 | */ |
40 | 40 | public static function create_shibb_unique_id_field_if_missing() |
41 | 41 | { |
@@ -346,6 +346,9 @@ |
||
346 | 346 | return $result; |
347 | 347 | } |
348 | 348 | |
349 | + /** |
|
350 | + * @param string $sql |
|
351 | + */ |
|
349 | 352 | protected function execute($sql) |
350 | 353 | { |
351 | 354 | return Database::query($sql, null, __FILE__); |
@@ -90,7 +90,7 @@ |
||
90 | 90 | |
91 | 91 | /** |
92 | 92 | * Validates the received active connection data with the database |
93 | - * @return bool Return the loginFailed variable value to local.inc.php |
|
93 | + * @return null|false Return the loginFailed variable value to local.inc.php |
|
94 | 94 | */ |
95 | 95 | public function check_user() |
96 | 96 | { |
@@ -327,6 +327,7 @@ discard block |
||
327 | 327 | |
328 | 328 | /** |
329 | 329 | * Serialize the course with the best serializer available |
330 | + * @return string |
|
330 | 331 | */ |
331 | 332 | public static function serialize($course) |
332 | 333 | { |
@@ -339,6 +340,7 @@ discard block |
||
339 | 340 | |
340 | 341 | /** |
341 | 342 | * Unserialize the course with the best serializer available |
343 | + * @param string $course |
|
342 | 344 | */ |
343 | 345 | public static function unserialize($course) |
344 | 346 | { |
@@ -173,7 +173,7 @@ |
||
173 | 173 | |
174 | 174 | /** |
175 | 175 | * @param array $file |
176 | - * @return bool|string |
|
176 | + * @return string|false |
|
177 | 177 | */ |
178 | 178 | public static function import_uploaded_file($file) |
179 | 179 | { |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
94 | - * @param array $array |
|
94 | + * @param string[] $array |
|
95 | 95 | */ |
96 | 96 | public function set_tools_to_build($array) |
97 | 97 | { |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * @param string $courseCode |
124 | 124 | * @param bool true if you want to get the elements that exists in the course and |
125 | 125 | * in the session, (session_id = 0 or session_id = X) |
126 | - * @return object The course object structure |
|
126 | + * @return Course The course object structure |
|
127 | 127 | */ |
128 | 128 | public function build( |
129 | 129 | $session_id = 0, |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | { |
14 | 14 | /** |
15 | 15 | * Display the form |
16 | - * @param array $hidden_fiels Hidden fields to add to the form. |
|
16 | + * @param array $hidden_fields Hidden fields to add to the form. |
|
17 | 17 | * @param boolean the document array will be serialize. This is used in the course_copy.php file |
18 | 18 | */ |
19 | 19 | static function display_form($course, $hidden_fields = null, $avoid_serialize = false) |
@@ -570,7 +570,7 @@ discard block |
||
570 | 570 | |
571 | 571 | /** |
572 | 572 | * Display the form session export |
573 | - * @param array $hidden_fiels Hidden fields to add to the form. |
|
573 | + * @param array $hidden_fields Hidden fields to add to the form. |
|
574 | 574 | * @param boolean the document array will be serialize. This is used in the course_copy.php file |
575 | 575 | */ |
576 | 576 | public static function display_form_session_export($list_course, $hidden_fields = null, $avoid_serialize = false) |