@@ -332,7 +332,7 @@ |
||
| 332 | 332 | * http://www.greywyvern.com/code/php/utf8_html.phps |
| 333 | 333 | * |
| 334 | 334 | * @param string $c |
| 335 | - * @return integer|false |
|
| 335 | + * @return integer |
|
| 336 | 336 | */ |
| 337 | 337 | private function _uniord($c) |
| 338 | 338 | { |
@@ -2084,7 +2084,7 @@ |
||
| 2084 | 2084 | * Count boards all or specific depending on argument, redirect boards excluded by default. |
| 2085 | 2085 | * |
| 2086 | 2086 | * @package Boards |
| 2087 | - * @param mixed[]|string $conditions is an associative array that holds the board or the cat IDs |
|
| 2087 | + * @param string $conditions is an associative array that holds the board or the cat IDs |
|
| 2088 | 2088 | * 'categories' => an array of category IDs (it accepts a single ID too) |
| 2089 | 2089 | * 'boards' => an array of board IDs (it accepts a single ID too) |
| 2090 | 2090 | * if conditions is set to 'all' (not an array) all the boards are queried |
@@ -349,7 +349,7 @@ |
||
| 349 | 349 | * Mark the specified personal messages as unread. |
| 350 | 350 | * |
| 351 | 351 | * @package PersonalMessage |
| 352 | - * @param int|int[] $personal_messages |
|
| 352 | + * @param integer $personal_messages |
|
| 353 | 353 | */ |
| 354 | 354 | function markMessagesUnread($personal_messages) |
| 355 | 355 | { |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | * Sets the sorting query and the direction |
| 117 | 117 | * |
| 118 | 118 | * @param string $query - The query to be used in the ORDER clause |
| 119 | - * @param bool|int $asc - If the sorting is ascending or not |
|
| 119 | + * @param boolean $asc - If the sorting is ascending or not |
|
| 120 | 120 | */ |
| 121 | 121 | public function setSorting($query, $asc) |
| 122 | 122 | { |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | * the messages table |
| 219 | 219 | * @param int $start - position to start the query |
| 220 | 220 | * @param int $limit - number of entries to grab |
| 221 | - * @param bool|int $include_avatars - if avatars should be retrieved as well |
|
| 221 | + * @param boolean $include_avatars - if avatars should be retrieved as well |
|
| 222 | 222 | * @return mixed[] - see Topic_Util::prepareContext |
| 223 | 223 | */ |
| 224 | 224 | private function _getUnreadTopics($join, $start, $limit, $include_avatars = false) |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | * |
| 384 | 384 | * @param int $start - position to start the query |
| 385 | 385 | * @param int $limit - number of entries to grab |
| 386 | - * @param bool|int $include_avatars - if avatars should be retrieved as well |
|
| 386 | + * @param boolean $include_avatars - if avatars should be retrieved as well |
|
| 387 | 387 | * @return mixed[] - see Topic_Util::prepareContext |
| 388 | 388 | */ |
| 389 | 389 | private function _getUnreadReplies($start, $limit, $include_avatars = false) |
@@ -135,7 +135,7 @@ |
||
| 135 | 135 | /** |
| 136 | 136 | * The first error occurred |
| 137 | 137 | * |
| 138 | - * @return array|string |
|
| 138 | + * @return string|null |
|
| 139 | 139 | */ |
| 140 | 140 | public function firstError() |
| 141 | 141 | { |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | * @param bool $single_file = false |
| 29 | 29 | * @param bool $overwrite = false |
| 30 | 30 | * @param string[]|null $files_to_extract = null |
| 31 | - * @return array|false |
|
| 31 | + * @return string |
|
| 32 | 32 | */ |
| 33 | 33 | function read_tgz_file($gzfilename, $destination, $single_file = false, $overwrite = false, $files_to_extract = null) |
| 34 | 34 | { |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | * @param bool $single_file = false, |
| 78 | 78 | * @param bool $overwrite = false, |
| 79 | 79 | * @param string[]|null $files_to_extract = null |
| 80 | - * @return array|false |
|
| 80 | + * @return string |
|
| 81 | 81 | */ |
| 82 | 82 | function read_tgz_data($data, $destination, $single_file = false, $overwrite = false, $files_to_extract = null) |
| 83 | 83 | { |
@@ -1330,7 +1330,7 @@ |
||
| 1330 | 1330 | * |
| 1331 | 1331 | * @param int $topic id of a topic |
| 1332 | 1332 | * @param int|null $msg the id of a message, if empty, t.id_first_msg is used |
| 1333 | - * @return mixed[]|boolean to topic attributes |
|
| 1333 | + * @return string|null to topic attributes |
|
| 1334 | 1334 | */ |
| 1335 | 1335 | function getTopicInfoByMsg($topic, $msg = null) |
| 1336 | 1336 | { |
@@ -1163,7 +1163,7 @@ |
||
| 1163 | 1163 | * - will look in various header fields where the ip may reside |
| 1164 | 1164 | * - returns false if it can't find a valid IP4 |
| 1165 | 1165 | * |
| 1166 | - * @return string|boolean on fail |
|
| 1166 | + * @return string|false on fail |
|
| 1167 | 1167 | */ |
| 1168 | 1168 | public function load_ip() |
| 1169 | 1169 | { |
@@ -1801,11 +1801,11 @@ |
||
| 1801 | 1801 | } |
| 1802 | 1802 | else |
| 1803 | 1803 | { |
| 1804 | - $pattern = '~^(' . implode('|', array_map(function ($val) {return preg_quote($val, '~');}, $protocols)) . ')~i'; |
|
| 1804 | + $pattern = '~^(' . implode('|', array_map(function ($val) {return preg_quote($val, '~'); }, $protocols)) . ')~i'; |
|
| 1805 | 1805 | } |
| 1806 | 1806 | |
| 1807 | 1807 | $found = false; |
| 1808 | - $url = preg_replace_callback($pattern, function($match) use (&$found) { |
|
| 1808 | + $url = preg_replace_callback($pattern, function ($match) use (&$found) { |
|
| 1809 | 1809 | $found = true; |
| 1810 | 1810 | |
| 1811 | 1811 | return strtolower($match[0]); |
@@ -1589,7 +1589,7 @@ |
||
| 1589 | 1589 | * @param resource $messages_request holds a query result |
| 1590 | 1590 | * @param bool $reset |
| 1591 | 1591 | * |
| 1592 | - * @return integer|boolean |
|
| 1592 | + * @return integer|null |
|
| 1593 | 1593 | */ |
| 1594 | 1594 | function currentContext($messages_request, $reset = false) |
| 1595 | 1595 | { |