@@ -18,7 +18,7 @@ |
||
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * Get a list of versions that are currently installed on the server. |
| 21 | - * @param array $checkFor An array of what to check versions for - can contain one or more of 'gd', 'imagemagick', 'db_server', 'phpa', 'memcache', 'xcache', 'apc', 'php' or 'server' |
|
| 21 | + * @param string[] $checkFor An array of what to check versions for - can contain one or more of 'gd', 'imagemagick', 'db_server', 'phpa', 'memcache', 'xcache', 'apc', 'php' or 'server' |
|
| 22 | 22 | * @return array An array of versions (keys are same as what was in $checkFor, values are the versions) |
| 23 | 23 | */ |
| 24 | 24 | function getServerVersions($checkFor) |
@@ -150,7 +150,7 @@ |
||
| 150 | 150 | * |
| 151 | 151 | * @param bool $local Whether we want local cookies |
| 152 | 152 | * @param bool $global Whether we want global cookies |
| 153 | - * @return array An array to set the cookie on with domain and path in it, in that order |
|
| 153 | + * @return string An array to set the cookie on with domain and path in it, in that order |
|
| 154 | 154 | */ |
| 155 | 155 | function url_parts($local, $global) |
| 156 | 156 | { |
@@ -558,7 +558,7 @@ discard block |
||
| 558 | 558 | * Backtrace, log, try to fix. |
| 559 | 559 | * |
| 560 | 560 | * @param string $db_string The DB string |
| 561 | - * @param object $connection The connection to use (if null, $db_connection is used) |
|
| 561 | + * @param resource $connection The connection to use (if null, $db_connection is used) |
|
| 562 | 562 | */ |
| 563 | 563 | function smf_db_error($db_string, $connection = null) |
| 564 | 564 | { |
@@ -753,7 +753,7 @@ discard block |
||
| 753 | 753 | * @param array $data The data to insert |
| 754 | 754 | * @param array $keys The keys for the table |
| 755 | 755 | * @param bool $disable_trans Whether to disable transactions |
| 756 | - * @param object $connection The connection to use (if null, $db_connection is used) |
|
| 756 | + * @param resource $connection The connection to use (if null, $db_connection is used) |
|
| 757 | 757 | */ |
| 758 | 758 | function smf_db_insert($method = 'replace', $table, $columns, $data, $keys, $disable_trans = false, $connection = null) |
| 759 | 759 | { |
@@ -456,7 +456,6 @@ discard block |
||
| 456 | 456 | |
| 457 | 457 | /** |
| 458 | 458 | * affected_rows |
| 459 | - * @param resource $connection |
|
| 460 | 459 | */ |
| 461 | 460 | function smf_db_affected_rows($result = null) |
| 462 | 461 | { |
@@ -799,7 +798,7 @@ discard block |
||
| 799 | 798 | * |
| 800 | 799 | * @param string $db_name The database name |
| 801 | 800 | * @param resource $db_connection The database connection |
| 802 | - * @return true Always returns true |
|
| 801 | + * @return boolean Always returns true |
|
| 803 | 802 | */ |
| 804 | 803 | function smf_db_select_db($db_name, $db_connection) |
| 805 | 804 | { |
@@ -170,7 +170,7 @@ |
||
| 170 | 170 | * |
| 171 | 171 | * @param string $fileName The path to the file |
| 172 | 172 | * @param int $preferred_format The preferred format - 0 to automatically determine, 1 for gif, 2 for jpg, 3 for png, 6 for bmp and 15 for wbmp |
| 173 | - * @return boolean Whether the reencoding was successful |
|
| 173 | + * @return false|null Whether the reencoding was successful |
|
| 174 | 174 | */ |
| 175 | 175 | function reencodeImage($fileName, $preferred_format = 0) |
| 176 | 176 | { |
@@ -243,6 +243,7 @@ |
||
| 243 | 243 | * @param null|array The groups to remove the member(s) from. If null, the specified members are stripped from all their membergroups. |
| 244 | 244 | * @param bool $permissionCheckDone Whether we've already checked permissions prior to calling this function |
| 245 | 245 | * @param bool $ignoreProtected Whether to ignore protected groups |
| 246 | + * @param integer $groups |
|
| 246 | 247 | * @return bool Whether the operation was successful |
| 247 | 248 | */ |
| 248 | 249 | function removeMembersFromGroups($members, $groups = null, $permissionCheckDone = false, $ignoreProtected = false) |
@@ -286,7 +286,7 @@ |
||
| 286 | 286 | /** |
| 287 | 287 | * Delete a menu. |
| 288 | 288 | * @param string $menu_id The ID of the menu to destroy or 'last' for the most recent one |
| 289 | - * @return bool|void False if the menu doesn't exist, nothing otherwise |
|
| 289 | + * @return false|null False if the menu doesn't exist, nothing otherwise |
|
| 290 | 290 | */ |
| 291 | 291 | function destroyMenu($menu_id = 'last') |
| 292 | 292 | { |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | * @param bool $single_file If true returns the contents of the file specified by destination if it exists |
| 29 | 29 | * @param bool $overwrite Whether to overwrite existing files |
| 30 | 30 | * @param null|array $files_to_extract Specific files to extract |
| 31 | - * @return array|false An array of information about extracted files or false on failure |
|
| 31 | + * @return string An array of information about extracted files or false on failure |
|
| 32 | 32 | */ |
| 33 | 33 | function read_tgz_file($gzfilename, $destination, $single_file = false, $overwrite = false, $files_to_extract = null) |
| 34 | 34 | { |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * @param bool $single_file Whether to only extract a single file |
| 60 | 60 | * @param bool $overwrite Whether to overwrite existing data |
| 61 | 61 | * @param null|array $files_to_extract If set, only extracts the specified files |
| 62 | - * @return array|false An array of information about the extracted files or false on failure |
|
| 62 | + * @return string An array of information about the extracted files or false on failure |
|
| 63 | 63 | */ |
| 64 | 64 | function read_tgz_data($gzfilename, $destination, $single_file = false, $overwrite = false, $files_to_extract = null) |
| 65 | 65 | { |
@@ -3251,7 +3251,7 @@ discard block |
||
| 3251 | 3251 | * http://www.php.net/crc32#79567 |
| 3252 | 3252 | * |
| 3253 | 3253 | * @param string $number |
| 3254 | - * @return string The crc32 |
|
| 3254 | + * @return integer The crc32 |
|
| 3255 | 3255 | */ |
| 3256 | 3256 | function smf_crc32($number) |
| 3257 | 3257 | { |
@@ -1451,7 +1451,7 @@ discard block |
||
| 1451 | 1451 | * @param resource $socket Socket to send on |
| 1452 | 1452 | * @param string $code The expected response code |
| 1453 | 1453 | * @param string $response The response from the SMTP server |
| 1454 | - * @return bool Whether it responded as such. |
|
| 1454 | + * @return string|boolean Whether it responded as such. |
|
| 1455 | 1455 | */ |
| 1456 | 1456 | function server_parse($message, $socket, $code, &$response = null) |
| 1457 | 1457 | { |
@@ -2265,7 +2265,7 @@ discard block |
||
| 2265 | 2265 | * @param array $msgs Array of message ids |
| 2266 | 2266 | * @param bool $approve Whether to approve the posts (if false, posts are unapproved) |
| 2267 | 2267 | * @param bool $notify Whether to notify users |
| 2268 | - * @return bool Whether the operation was successful |
|
| 2268 | + * @return null|boolean Whether the operation was successful |
|
| 2269 | 2269 | */ |
| 2270 | 2270 | function approvePosts($msgs, $approve = true, $notify = true) |
| 2271 | 2271 | { |
@@ -2518,7 +2518,7 @@ discard block |
||
| 2518 | 2518 | * |
| 2519 | 2519 | * @param array $topics Array of topic ids |
| 2520 | 2520 | * @param bool $approve Whether to approve the topics. If false, unapproves them instead |
| 2521 | - * @return bool Whether the operation was successful |
|
| 2521 | + * @return null|boolean Whether the operation was successful |
|
| 2522 | 2522 | */ |
| 2523 | 2523 | function approveTopics($topics, $approve = true) |
| 2524 | 2524 | { |
@@ -2908,7 +2908,7 @@ discard block |
||
| 2908 | 2908 | * |
| 2909 | 2909 | * @param resource $dict An enchant or pspell dictionary resource set up by {@link spell_init()} |
| 2910 | 2910 | * @param string $word A word to check the spelling of |
| 2911 | - * @return bool Whether or not the specified word is spelled properly |
|
| 2911 | + * @return boolean|null Whether or not the specified word is spelled properly |
|
| 2912 | 2912 | */ |
| 2913 | 2913 | function spell_check($dict, $word) |
| 2914 | 2914 | { |