Completed
Branch release-2.1 (4c82a0)
by Rick
15:44
created
Sources/Subs-Admin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
Sources/Subs-Auth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
Sources/Subs-Db-mysqli.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -530,7 +530,7 @@  discard block
 block discarded – undo
530 530
  * Backtrace, log, try to fix.
531 531
  *
532 532
  * @param string $db_string The DB string
533
- * @param object $connection The connection to use (if null, $db_connection is used)
533
+ * @param resource $connection The connection to use (if null, $db_connection is used)
534 534
  */
535 535
 function smf_db_error($db_string, $connection = null)
536 536
 {
@@ -725,7 +725,7 @@  discard block
 block discarded – undo
725 725
  * @param array $data The data to insert
726 726
  * @param array $keys The keys for the table
727 727
  * @param bool $disable_trans Whether to disable transactions
728
- * @param object $connection The connection to use (if null, $db_connection is used)
728
+ * @param resource $connection The connection to use (if null, $db_connection is used)
729 729
  */
730 730
 function smf_db_insert($method = 'replace', $table, $columns, $data, $keys, $disable_trans = false, $connection = null)
731 731
 {
Please login to merge, or discard this patch.
Sources/Subs-Db-postgresql.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -447,7 +447,6 @@  discard block
 block discarded – undo
447 447
 
448 448
 /**
449 449
  * affected_rows
450
- * @param resource $connection
451 450
  */
452 451
 function smf_db_affected_rows($result = null)
453 452
 {
@@ -790,7 +789,7 @@  discard block
 block discarded – undo
790 789
  *
791 790
  * @param string $db_name The database name
792 791
  * @param resource $db_connection The database connection
793
- * @return true Always returns true
792
+ * @return boolean Always returns true
794 793
  */
795 794
 function smf_db_select_db($db_name, $db_connection)
796 795
 {
Please login to merge, or discard this patch.
Sources/Subs-Graphics.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
Sources/Subs-Membergroups.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -243,6 +243,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
Sources/Subs-Members.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -842,7 +842,7 @@
 block discarded – undo
842 842
  * @param int $current_ID_MEMBER The ID of the current member (to avoid false positives with the current member)
843 843
  * @param bool $is_name Whether we're checking against reserved names or just usernames
844 844
  * @param bool $fatal Whether to die with a fatal error if the name is reserved
845
- * @return bool|void False if name is not reserved, otherwise true if $fatal is false or dies with a fatal_lang_error if $fatal is true
845
+ * @return boolean False if name is not reserved, otherwise true if $fatal is false or dies with a fatal_lang_error if $fatal is true
846 846
  */
847 847
 function isReservedName($name, $current_ID_MEMBER = 0, $is_name = true, $fatal = true)
848 848
 {
Please login to merge, or discard this patch.
Sources/Subs-Menu.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -286,7 +286,7 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
Sources/Subs-Package.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 {
@@ -3244,7 +3244,7 @@  discard block
 block discarded – undo
3244 3244
 	 * http://www.php.net/crc32#79567
3245 3245
 	 *
3246 3246
 	 * @param string $number
3247
-	 * @return string The crc32
3247
+	 * @return integer The crc32
3248 3248
 	 */
3249 3249
 	function smf_crc32($number)
3250 3250
 	{
Please login to merge, or discard this patch.