@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | |
115 | 115 | /** |
116 | 116 | * @param $val |
117 | - * @param $key |
|
117 | + * @param string $key |
|
118 | 118 | */ |
119 | 119 | protected function _initial_recursive($val, $key) |
120 | 120 | { |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | * @param bool $unique_check |
255 | 255 | * @param int $level |
256 | 256 | * |
257 | - * @return bool |
|
257 | + * @return boolean|null |
|
258 | 258 | */ |
259 | 259 | public function output_log($type = 'UNKNOWN', $uid = 0, $unique_check = false, $level = 1) |
260 | 260 | { |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | } |
305 | 305 | |
306 | 306 | /** |
307 | - * @param $expire |
|
307 | + * @param integer $expire |
|
308 | 308 | * |
309 | 309 | * @return bool |
310 | 310 | */ |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | } |
327 | 327 | |
328 | 328 | /** |
329 | - * @return mixed |
|
329 | + * @return integer |
|
330 | 330 | */ |
331 | 331 | public function get_bwlimit() |
332 | 332 | { |
@@ -1094,7 +1094,7 @@ discard block |
||
1094 | 1094 | * @param int $uid |
1095 | 1095 | * @param bool $can_ban |
1096 | 1096 | * |
1097 | - * @return bool |
|
1097 | + * @return boolean|null |
|
1098 | 1098 | */ |
1099 | 1099 | public function check_dos_attack($uid = 0, $can_ban = false) |
1100 | 1100 | { |
@@ -1334,7 +1334,7 @@ discard block |
||
1334 | 1334 | } |
1335 | 1335 | |
1336 | 1336 | /** |
1337 | - * @param $points4deny |
|
1337 | + * @param integer $points4deny |
|
1338 | 1338 | * @param $uid |
1339 | 1339 | */ |
1340 | 1340 | public function spam_check($points4deny, $uid) |
@@ -1445,10 +1445,10 @@ discard block |
||
1445 | 1445 | } |
1446 | 1446 | |
1447 | 1447 | /** |
1448 | - * @param $type |
|
1448 | + * @param string $type |
|
1449 | 1449 | * @param string $dying_message |
1450 | 1450 | * |
1451 | - * @return int|mixed |
|
1451 | + * @return null|integer |
|
1452 | 1452 | */ |
1453 | 1453 | public function call_filter($type, $dying_message = '') |
1454 | 1454 | { |
@@ -75,7 +75,7 @@ |
||
75 | 75 | /** |
76 | 76 | * @param $type |
77 | 77 | * |
78 | - * @return int|mixed |
|
78 | + * @return integer |
|
79 | 79 | */ |
80 | 80 | public function execute($type) |
81 | 81 | { |
@@ -111,7 +111,7 @@ |
||
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
114 | - * @param $sql |
|
114 | + * @param string $sql |
|
115 | 115 | */ |
116 | 116 | public function checkSql($sql) |
117 | 117 | { |
@@ -9,7 +9,7 @@ |
||
9 | 9 | public $method; |
10 | 10 | |
11 | 11 | /** |
12 | - * @return bool |
|
12 | + * @return null|boolean |
|
13 | 13 | */ |
14 | 14 | public function execute() |
15 | 15 | { |
@@ -4,7 +4,7 @@ |
||
4 | 4 | * @param $xoops_root_path |
5 | 5 | * @param $mytrustdirname |
6 | 6 | * |
7 | - * @return array |
|
7 | + * @return string[] |
|
8 | 8 | */ |
9 | 9 | function get_writeoks_from_protector( $xoops_root_path , $mytrustdirname ) |
10 | 10 | { |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | /** |
4 | - * @return bool |
|
4 | + * @return boolean|null |
|
5 | 5 | */ |
6 | 6 | function protector_postcommon() |
7 | 7 | { |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | /** |
4 | - * @return bool |
|
4 | + * @return null|boolean |
|
5 | 5 | */ |
6 | 6 | function protector_prepare() |
7 | 7 | { |
@@ -9,6 +9,11 @@ discard block |
||
9 | 9 | */ |
10 | 10 | class HTMLPurifier_Arborize |
11 | 11 | { |
12 | + /** |
|
13 | + * @param HTMLPurifier_Token[] $tokens |
|
14 | + * @param HTMLPurifier_Config $config |
|
15 | + * @param HTMLPurifier_Context $context |
|
16 | + */ |
|
12 | 17 | public static function arborize($tokens, $config, $context) { |
13 | 18 | $definition = $config->getHTMLDefinition(); |
14 | 19 | $parent = new HTMLPurifier_Token_Start($definition->info_parent); |
@@ -36,6 +41,10 @@ discard block |
||
36 | 41 | return $stack[0]; |
37 | 42 | } |
38 | 43 | |
44 | + /** |
|
45 | + * @param HTMLPurifier_Config $config |
|
46 | + * @param HTMLPurifier_Context $context |
|
47 | + */ |
|
39 | 48 | public static function flatten($node, $config, $context) { |
40 | 49 | $level = 0; |
41 | 50 | $nodes = array($level => new HTMLPurifier_Queue(array($node))); |
@@ -56,6 +56,7 @@ discard block |
||
56 | 56 | * 4.7. However, note that we are NOT necessarily |
57 | 57 | * parsing XML, thus, this behavior may still be correct. We |
58 | 58 | * assume that newlines have been normalized. |
59 | + * @param string $string |
|
59 | 60 | */ |
60 | 61 | public function parseCDATA($string) |
61 | 62 | { |
@@ -92,6 +93,7 @@ discard block |
||
92 | 93 | /** |
93 | 94 | * Parses a possibly escaped CSS string and returns the "pure" |
94 | 95 | * version of it. |
96 | + * @param string $string |
|
95 | 97 | */ |
96 | 98 | protected function expandCSSEscape($string) |
97 | 99 | { |