@@ -219,31 +219,31 @@ |
||
219 | 219 | /** |
220 | 220 | * showThread :: DO NOT USE |
221 | 221 | * |
222 | - * @param unknown_type $color_number |
|
223 | - * @param unknown_type $subject_image |
|
222 | + * @param integer $color_number |
|
223 | + * @param string $subject_image |
|
224 | 224 | * @param unknown_type $subject |
225 | 225 | * @param unknown_type $text |
226 | - * @param unknown_type $post_date |
|
227 | - * @param unknown_type $ip_image |
|
228 | - * @param unknown_type $reply_image |
|
229 | - * @param unknown_type $edit_image |
|
230 | - * @param unknown_type $delete_image |
|
226 | + * @param string $post_date |
|
227 | + * @param string $ip_image |
|
228 | + * @param string $reply_image |
|
229 | + * @param string $edit_image |
|
230 | + * @param string $delete_image |
|
231 | 231 | * @param string|\unknown_type $username |
232 | 232 | * @param string|\unknown_type $rank_title |
233 | 233 | * @param string|\unknown_type $rank_image |
234 | - * @param string|\unknown_type $avatar_image |
|
235 | - * @param string|\unknown_type $reg_date |
|
236 | - * @param string|\unknown_type $posts |
|
237 | - * @param string|\unknown_type $user_from |
|
238 | - * @param string|\unknown_type $online_image |
|
239 | - * @param string|\unknown_type $profile_image |
|
240 | - * @param string|\unknown_type $pm_image |
|
241 | - * @param string|\unknown_type $email_image |
|
242 | - * @param string|\unknown_type $www_image |
|
243 | - * @param string|\unknown_type $icq_image |
|
244 | - * @param string|\unknown_type $aim_image |
|
245 | - * @param string|\unknown_type $yim_image |
|
246 | - * @param string|\unknown_type $msnm_image |
|
234 | + * @param string $avatar_image |
|
235 | + * @param string $reg_date |
|
236 | + * @param string $posts |
|
237 | + * @param string $user_from |
|
238 | + * @param string $online_image |
|
239 | + * @param string $profile_image |
|
240 | + * @param string $pm_image |
|
241 | + * @param string $email_image |
|
242 | + * @param string $www_image |
|
243 | + * @param string $icq_image |
|
244 | + * @param string $aim_image |
|
245 | + * @param string $yim_image |
|
246 | + * @param string $msnm_image |
|
247 | 247 | */ |
248 | 248 | function showThread($color_number, $subject_image, $subject, $text, $post_date, $ip_image, $reply_image, $edit_image, $delete_image, $username = '', $rank_title = '', $rank_image = '', $avatar_image = '', $reg_date = '', $posts = '', $user_from = '', $online_image = '', $profile_image = '', $pm_image = '', $email_image = '', $www_image = '', $icq_image = '', $aim_image = '', $yim_image = '', $msnm_image = '') |
249 | 249 | { |
@@ -114,7 +114,7 @@ |
||
114 | 114 | * Create new Object |
115 | 115 | * |
116 | 116 | * @param bool $isNew |
117 | - * @return object |
|
117 | + * @return SystemAvatar |
|
118 | 118 | */ |
119 | 119 | public function create($isNew = true) |
120 | 120 | { |
@@ -116,7 +116,7 @@ |
||
116 | 116 | /** |
117 | 117 | * Execute the filter |
118 | 118 | * |
119 | - * @return bool |
|
119 | + * @return boolean|null |
|
120 | 120 | */ |
121 | 121 | public function execute() |
122 | 122 | { |
@@ -23,7 +23,7 @@ |
||
23 | 23 | protected $minimumConfidence = 65.0; // set at your desired threshold |
24 | 24 | |
25 | 25 | /** |
26 | - * @return bool |
|
26 | + * @return boolean|null |
|
27 | 27 | */ |
28 | 28 | public function execute() |
29 | 29 | { |
@@ -34,7 +34,7 @@ |
||
34 | 34 | * @param string $string |
35 | 35 | * @param HTMLPurifier_Config $config |
36 | 36 | * @param HTMLPurifier_Context $context |
37 | - * @return bool|string |
|
37 | + * @return false|string |
|
38 | 38 | */ |
39 | 39 | public function validate($string, $config, $context) |
40 | 40 | { |
@@ -24,7 +24,7 @@ |
||
24 | 24 | * @param string $string |
25 | 25 | * @param HTMLPurifier_Config $config |
26 | 26 | * @param HTMLPurifier_Context $context |
27 | - * @return bool|string |
|
27 | + * @return string|false |
|
28 | 28 | */ |
29 | 29 | public function validate($string, $config, $context) |
30 | 30 | { |
@@ -23,7 +23,7 @@ |
||
23 | 23 | protected $minimumConfidence = 65.0; // set at your desired threshold |
24 | 24 | |
25 | 25 | /** |
26 | - * @return bool |
|
26 | + * @return boolean|null |
|
27 | 27 | */ |
28 | 28 | public function execute() |
29 | 29 | { |
@@ -458,6 +458,9 @@ discard block |
||
458 | 458 | const CHARACTR = 4; |
459 | 459 | const EOF = 5; |
460 | 460 | |
461 | + /** |
|
462 | + * @param string $data |
|
463 | + */ |
|
461 | 464 | public function __construct($data) |
462 | 465 | { |
463 | 466 | $this->data = $data; |
@@ -478,6 +481,9 @@ discard block |
||
478 | 481 | return $this->tree->save(); |
479 | 482 | } |
480 | 483 | |
484 | + /** |
|
485 | + * @return string |
|
486 | + */ |
|
481 | 487 | private function char() |
482 | 488 | { |
483 | 489 | return ($this->char < $this->EOF) |
@@ -485,6 +491,11 @@ discard block |
||
485 | 491 | : false; |
486 | 492 | } |
487 | 493 | |
494 | + /** |
|
495 | + * @param integer $s |
|
496 | + * |
|
497 | + * @return string |
|
498 | + */ |
|
488 | 499 | private function character($s, $l = 0) |
489 | 500 | { |
490 | 501 | if ($s + $l < $this->EOF) { |
@@ -496,6 +507,10 @@ discard block |
||
496 | 507 | } |
497 | 508 | } |
498 | 509 | |
510 | + /** |
|
511 | + * @param string $char_class |
|
512 | + * @param integer $start |
|
513 | + */ |
|
499 | 514 | private function characters($char_class, $start) |
500 | 515 | { |
501 | 516 | return preg_replace('#^([' . $char_class . ']+).*#s', '\\1', substr($this->data, $start)); |
@@ -4645,6 +4660,9 @@ discard block |
||
4645 | 4660 | } |
4646 | 4661 | } |
4647 | 4662 | |
4663 | + /** |
|
4664 | + * @param string[] $elements |
|
4665 | + */ |
|
4648 | 4666 | private function clearStackToTableContext($elements) |
4649 | 4667 | { |
4650 | 4668 | /* When the steps above require the UA to clear the stack back to a |
@@ -20,28 +20,62 @@ |
||
20 | 20 | function mb_decode_mimeheader($s) { return p\Mbstring::mb_decode_mimeheader($s); } |
21 | 21 | function mb_encode_mimeheader($s, $charset = null, $transferEnc = null, $lf = null, $indent = null) { return p\Mbstring::mb_encode_mimeheader($s, $charset, $transferEnc, $lf, $indent); } |
22 | 22 | function mb_convert_case($s, $mode, $enc = null) { return p\Mbstring::mb_convert_case($s, $mode, $enc); } |
23 | + |
|
24 | + /** |
|
25 | + * @param string|boolean $enc |
|
26 | + */ |
|
23 | 27 | function mb_internal_encoding($enc = null) { return p\Mbstring::mb_internal_encoding($enc); } |
24 | 28 | function mb_language($lang = null) { return p\Mbstring::mb_language($lang); } |
25 | 29 | function mb_list_encodings() { return p\Mbstring::mb_list_encodings(); } |
26 | 30 | function mb_encoding_aliases($encoding) { return p\Mbstring::mb_encoding_aliases($encoding); } |
31 | + |
|
32 | + /** |
|
33 | + * @param string $var |
|
34 | + * @param string $encoding |
|
35 | + */ |
|
27 | 36 | function mb_check_encoding($var = null, $encoding = null) { return p\Mbstring::mb_check_encoding($var, $encoding); } |
28 | 37 | function mb_detect_encoding($str, $encodingList = null, $strict = false) { return p\Mbstring::mb_detect_encoding($str, $encodingList, $strict); } |
29 | 38 | function mb_detect_order($encodingList = null) { return p\Mbstring::mb_detect_order($encodingList); } |
30 | 39 | function mb_parse_str($s, &$result = array()) { parse_str($s, $result); } |
31 | 40 | function mb_strlen($s, $enc = null) { return p\Mbstring::mb_strlen($s, $enc); } |
41 | + |
|
42 | + /** |
|
43 | + * @param string $s |
|
44 | + * @param string $needle |
|
45 | + * @param string $enc |
|
46 | + */ |
|
32 | 47 | function mb_strpos($s, $needle, $offset = 0, $enc = null) { return p\Mbstring::mb_strpos($s, $needle, $offset, $enc); } |
48 | + |
|
49 | + /** |
|
50 | + * @param string $s |
|
51 | + * @param string $enc |
|
52 | + */ |
|
33 | 53 | function mb_strtolower($s, $enc = null) { return p\Mbstring::mb_strtolower($s, $enc); } |
34 | 54 | function mb_strtoupper($s, $enc = null) { return p\Mbstring::mb_strtoupper($s, $enc); } |
35 | 55 | function mb_substitute_character($char = null) { return p\Mbstring::mb_substitute_character($char); } |
36 | 56 | function mb_substr($s, $start, $length = 2147483647, $enc = null) { return p\Mbstring::mb_substr($s, $start, $length, $enc); } |
57 | + |
|
58 | + /** |
|
59 | + * @param string $enc |
|
60 | + */ |
|
37 | 61 | function mb_stripos($s, $needle, $offset = 0, $enc = null) { return p\Mbstring::mb_stripos($s, $needle, $offset, $enc); } |
38 | 62 | function mb_stristr($s, $needle, $part = false, $enc = null) { return p\Mbstring::mb_stristr($s, $needle, $part, $enc); } |
39 | 63 | function mb_strrchr($s, $needle, $part = false, $enc = null) { return p\Mbstring::mb_strrchr($s, $needle, $part, $enc); } |
40 | 64 | function mb_strrichr($s, $needle, $part = false, $enc = null) { return p\Mbstring::mb_strrichr($s, $needle, $part, $enc); } |
41 | 65 | function mb_strripos($s, $needle, $offset = 0, $enc = null) { return p\Mbstring::mb_strripos($s, $needle, $offset, $enc); } |
66 | + |
|
67 | + /** |
|
68 | + * @param string $s |
|
69 | + * @param string $needle |
|
70 | + * @param string $enc |
|
71 | + */ |
|
42 | 72 | function mb_strrpos($s, $needle, $offset = 0, $enc = null) { return p\Mbstring::mb_strrpos($s, $needle, $offset, $enc); } |
43 | 73 | function mb_strstr($s, $needle, $part = false, $enc = null) { return p\Mbstring::mb_strstr($s, $needle, $part, $enc); } |
44 | 74 | function mb_get_info($type = 'all') { return p\Mbstring::mb_get_info($type); } |
75 | + |
|
76 | + /** |
|
77 | + * @param string $enc |
|
78 | + */ |
|
45 | 79 | function mb_http_output($enc = null) { return p\Mbstring::mb_http_output($enc); } |
46 | 80 | function mb_strwidth($s, $enc = null) { return p\Mbstring::mb_strwidth($s, $enc); } |
47 | 81 | function mb_substr_count($haystack, $needle, $enc = null) { return p\Mbstring::mb_substr_count($haystack, $needle, $enc); } |