@@ -18,6 +18,9 @@ discard block |
||
18 | 18 | public $name = 'class'; |
19 | 19 | public $extends = ''; |
20 | 20 | |
21 | + /** |
|
22 | + * @param string $name |
|
23 | + */ |
|
21 | 24 | function addProperty($name, $value = null, $static = false, $security = 'public') |
22 | 25 | { |
23 | 26 | $this->propertys[$name] = new Property(); |
@@ -27,6 +30,9 @@ discard block |
||
27 | 30 | $this->propertys[$name]->security = $security; |
28 | 31 | } |
29 | 32 | |
33 | + /** |
|
34 | + * @param string $name |
|
35 | + */ |
|
30 | 36 | function addMethod($name, $body = '', $propertys = [], $static = false, $security = 'public') |
31 | 37 | { |
32 | 38 | $this->methods[$name] = new Method(); |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | * the constructor |
90 | 90 | * |
91 | 91 | * @param array $options |
92 | - * @return boolean |
|
92 | + * @return boolean|null |
|
93 | 93 | * @since 0.5.2 |
94 | 94 | */ |
95 | 95 | public function __construct($options = false) |
@@ -388,7 +388,7 @@ discard block |
||
388 | 388 | /** |
389 | 389 | * Use this method to get the last error ocurred |
390 | 390 | * @param void |
391 | - * @return string The last error, that occured |
|
391 | + * @return boolean The last error, that occured |
|
392 | 392 | */ |
393 | 393 | public function get_last_error() |
394 | 394 | { |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | /** |
399 | 399 | * The actual decoding algorithm |
400 | 400 | * @param string |
401 | - * @return mixed |
|
401 | + * @return false|string |
|
402 | 402 | */ |
403 | 403 | protected function _decode($encoded) |
404 | 404 | { |
@@ -455,7 +455,7 @@ discard block |
||
455 | 455 | /** |
456 | 456 | * The actual encoding algorithm |
457 | 457 | * @param string |
458 | - * @return mixed |
|
458 | + * @return false|string |
|
459 | 459 | */ |
460 | 460 | protected function _encode($decoded) |
461 | 461 | { |
@@ -675,7 +675,7 @@ discard block |
||
675 | 675 | * Decomposes a Hangul syllable |
676 | 676 | * (see http://www.unicode.org/unicode/reports/tr15/#Hangul |
677 | 677 | * @param integer 32bit UCS4 code point |
678 | - * @return array Either Hangul Syllable decomposed or original 32bit value as one value array |
|
678 | + * @return integer[] Either Hangul Syllable decomposed or original 32bit value as one value array |
|
679 | 679 | */ |
680 | 680 | protected function _hangul_decompose($char) |
681 | 681 | { |
@@ -83,6 +83,9 @@ |
||
83 | 83 | return null; |
84 | 84 | } |
85 | 85 | |
86 | + /** |
|
87 | + * @return string |
|
88 | + */ |
|
86 | 89 | function colName() |
87 | 90 | { |
88 | 91 | return "{$this->activeForm->requestFormName}[{$this->activeForm->modelName}][{$this->colName}]"; |
@@ -74,7 +74,6 @@ |
||
74 | 74 | /** |
75 | 75 | * Load share config |
76 | 76 | * |
77 | - * @param string $site_name |
|
78 | 77 | * @return array |
79 | 78 | */ |
80 | 79 | public static function share($module = '') |
@@ -43,7 +43,7 @@ |
||
43 | 43 | * |
44 | 44 | * @param string $eventName |
45 | 45 | * @param string $listenCode |
46 | - * @param array|closure $callback |
|
46 | + * @param Closure $callback |
|
47 | 47 | * @param boolean $save |
48 | 48 | */ |
49 | 49 | function listen($eventName, $listenCode, $callback, $save = false) |