@@ -4070,7 +4070,7 @@ |
||
4070 | 4070 | * |
4071 | 4071 | * @param int $pmID The ID of the PM |
4072 | 4072 | * @param string $validFor Which folders this is valud for - can be 'inbox', 'outbox' or 'in_or_outbox' |
4073 | - * @return boolean Whether the PM is accessible in that folder for the current user |
|
4073 | + * @return boolean|null Whether the PM is accessible in that folder for the current user |
|
4074 | 4074 | */ |
4075 | 4075 | function isAccessiblePM($pmID, $validFor = 'in_or_outbox') |
4076 | 4076 | { |
@@ -2183,7 +2183,7 @@ discard block |
||
2183 | 2183 | * Deletes a single or a group of alerts by ID |
2184 | 2184 | * |
2185 | 2185 | * @param int|array The ID of a single alert to delete or an array containing the IDs of multiple alerts. The function will convert integers into an array for better handling. |
2186 | - * @param bool|int $memID The user ID. Used to update the user unread alerts count. |
|
2186 | + * @param integer $memID The user ID. Used to update the user unread alerts count. |
|
2187 | 2187 | * @return void|int If the $memID param is set, returns the new amount of unread alerts. |
2188 | 2188 | */ |
2189 | 2189 | function alert_delete($toDelete, $memID = false) |
@@ -2839,7 +2839,7 @@ discard block |
||
2839 | 2839 | /** |
2840 | 2840 | * Handles the "manage groups" section of the profile |
2841 | 2841 | * |
2842 | - * @return true Always returns true |
|
2842 | + * @return boolean Always returns true |
|
2843 | 2843 | */ |
2844 | 2844 | function profileLoadGroups() |
2845 | 2845 | { |
@@ -2896,7 +2896,7 @@ discard block |
||
2896 | 2896 | /** |
2897 | 2897 | * Load key signature context data. |
2898 | 2898 | * |
2899 | - * @return true Always returns true |
|
2899 | + * @return boolean Always returns true |
|
2900 | 2900 | */ |
2901 | 2901 | function profileLoadSignatureData() |
2902 | 2902 | { |
@@ -2960,7 +2960,7 @@ discard block |
||
2960 | 2960 | /** |
2961 | 2961 | * Load avatar context data. |
2962 | 2962 | * |
2963 | - * @return true Always returns true |
|
2963 | + * @return boolean Always returns true |
|
2964 | 2964 | */ |
2965 | 2965 | function profileLoadAvatarData() |
2966 | 2966 | { |
@@ -3033,7 +3033,7 @@ discard block |
||
3033 | 3033 | * Save a members group. |
3034 | 3034 | * |
3035 | 3035 | * @param int &$value The ID of the (new) primary group |
3036 | - * @return true Always returns true |
|
3036 | + * @return boolean Always returns true |
|
3037 | 3037 | */ |
3038 | 3038 | function profileSaveGroups(&$value) |
3039 | 3039 | { |
@@ -3138,7 +3138,7 @@ discard block |
||
3138 | 3138 | * @todo argh, the avatar here. Take this out of here! |
3139 | 3139 | * |
3140 | 3140 | * @param string &$value What kind of avatar we're expecting. Can be 'none', 'server_stored', 'gravatar', 'external' or 'upload' |
3141 | - * @return bool|string False if success (or if memID is empty and password authentication failed), otherwise a string indicating what error occurred |
|
3141 | + * @return false|string False if success (or if memID is empty and password authentication failed), otherwise a string indicating what error occurred |
|
3142 | 3142 | */ |
3143 | 3143 | function profileSaveAvatarData(&$value) |
3144 | 3144 | { |
@@ -676,7 +676,7 @@ discard block |
||
676 | 676 | * - caches the formatting data from the setting for optimization. |
677 | 677 | * |
678 | 678 | * @param float $number A number |
679 | - * @param bool|int $override_decimal_count If set, will use the specified number of decimal places. Otherwise it's automatically determined |
|
679 | + * @param integer $override_decimal_count If set, will use the specified number of decimal places. Otherwise it's automatically determined |
|
680 | 680 | * @return string A formatted number |
681 | 681 | */ |
682 | 682 | function comma_format($number, $override_decimal_count = false) |
@@ -5527,7 +5527,7 @@ discard block |
||
5527 | 5527 | * It assumes the data is already a string. |
5528 | 5528 | * @param string $data The data to print |
5529 | 5529 | * @param string $type The content type. Defaults to Json. |
5530 | - * @return void |
|
5530 | + * @return false|null |
|
5531 | 5531 | */ |
5532 | 5532 | function smf_serverResponse($data = '', $type = 'Content-Type: application/json') |
5533 | 5533 | { |
@@ -5495,7 +5495,6 @@ discard block |
||
5495 | 5495 | |
5496 | 5496 | /** |
5497 | 5497 | * Tries different modes to make file/dirs writable. Wrapper function for chmod() |
5498 | - |
|
5499 | 5498 | * @param string $file The file/dir full path. |
5500 | 5499 | * @param int $value Not needed, added for legacy reasons. |
5501 | 5500 | * @return boolean true if the file/dir is already writable or the function was able to make it writable, false if the function couldn't make the file/dir writable. |
@@ -5535,7 +5534,6 @@ discard block |
||
5535 | 5534 | |
5536 | 5535 | /** |
5537 | 5536 | * Wrapper function for json_decode() with error handling. |
5538 | - |
|
5539 | 5537 | * @param string $json The string to decode. |
5540 | 5538 | * @param bool $returnAsArray To return the decoded string as an array or an object, SMF only uses Arrays but to keep on compatibility with json_decode its set to false as default. |
5541 | 5539 | * @param bool $logIt To specify if the error will be logged if theres any. |
@@ -6028,7 +6026,7 @@ discard block |
||
6028 | 6026 | $cont = stream_context_get_params($read); |
6029 | 6027 | $result = isset($cont['options']['ssl']['peer_certificate']) ? true : false; |
6030 | 6028 | } |
6031 | - return $result; |
|
6029 | + return $result; |
|
6032 | 6030 | } |
6033 | 6031 | |
6034 | 6032 | /** |
@@ -2259,9 +2259,9 @@ discard block |
||
2259 | 2259 | * |
2260 | 2260 | * @uses the template_include() function to include the file. |
2261 | 2261 | * @param string $template_name The name of the template to load |
2262 | - * @param array|string $style_sheets The name of a single stylesheet or an array of names of stylesheets to load |
|
2262 | + * @param string $style_sheets The name of a single stylesheet or an array of names of stylesheets to load |
|
2263 | 2263 | * @param bool $fatal If true, dies with an error message if the template cannot be found |
2264 | - * @return boolean Whether or not the template was loaded |
|
2264 | + * @return boolean|null Whether or not the template was loaded |
|
2265 | 2265 | */ |
2266 | 2266 | function loadTemplate($template_name, $style_sheets = array(), $fatal = true) |
2267 | 2267 | { |
@@ -2444,7 +2444,7 @@ discard block |
||
2444 | 2444 | * - all code added with this function is added to the same <style> tag so do make sure your css is valid! |
2445 | 2445 | * |
2446 | 2446 | * @param string $css Some css code |
2447 | - * @return void|bool Adds the CSS to the $context['css_header'] array or returns if no CSS is specified |
|
2447 | + * @return false|null Adds the CSS to the $context['css_header'] array or returns if no CSS is specified |
|
2448 | 2448 | */ |
2449 | 2449 | function addInlineCss($css) |
2450 | 2450 | { |
@@ -2558,7 +2558,7 @@ discard block |
||
2558 | 2558 | * |
2559 | 2559 | * @param string $javascript Some JS code |
2560 | 2560 | * @param bool $defer Whether the script should load in <head> or before the closing <html> tag |
2561 | - * @return void|bool Adds the code to one of the $context['javascript_inline'] arrays or returns if no JS was specified |
|
2561 | + * @return false|null Adds the code to one of the $context['javascript_inline'] arrays or returns if no JS was specified |
|
2562 | 2562 | */ |
2563 | 2563 | function addInlineJavaScript($javascript, $defer = false) |
2564 | 2564 | { |
@@ -2791,7 +2791,7 @@ discard block |
||
2791 | 2791 | * It will try to choose only utf8 or non-utf8 languages. |
2792 | 2792 | * |
2793 | 2793 | * @param bool $use_cache Whether or not to use the cache |
2794 | - * @return array An array of information about available languages |
|
2794 | + * @return string An array of information about available languages |
|
2795 | 2795 | */ |
2796 | 2796 | function getLanguages($use_cache = true) |
2797 | 2797 | { |