@@ -420,6 +420,9 @@ |
||
420 | 420 | return $form; |
421 | 421 | } |
422 | 422 | |
423 | + /** |
|
424 | + * @param Form $form |
|
425 | + */ |
|
423 | 426 | protected function prepareStep0Form($form) |
424 | 427 | { |
425 | 428 | $form->action_url = $this->response->scripturl . '?step=1'; |
@@ -45,6 +45,9 @@ |
||
45 | 45 | return 'members'; |
46 | 46 | } |
47 | 47 | |
48 | + /** |
|
49 | + * @param string $name |
|
50 | + */ |
|
48 | 51 | protected function fetchSetting($name) |
49 | 52 | { |
50 | 53 | static $content = null; |
@@ -47,6 +47,9 @@ |
||
47 | 47 | return 'members'; |
48 | 48 | } |
49 | 49 | |
50 | + /** |
|
51 | + * @param string $name |
|
52 | + */ |
|
50 | 53 | protected function fetchSetting($name) |
51 | 54 | { |
52 | 55 | static $content = null; |
@@ -95,6 +95,9 @@ discard block |
||
95 | 95 | return array($db_server, $db_user, $db_passwd, $db_persist, $db_prefix, $db_name); |
96 | 96 | } |
97 | 97 | |
98 | + /** |
|
99 | + * @param string $name |
|
100 | + */ |
|
98 | 101 | protected function fetchSetting($name) |
99 | 102 | { |
100 | 103 | static $content = null; |
@@ -484,6 +487,9 @@ discard block |
||
484 | 487 | } |
485 | 488 | } |
486 | 489 | |
490 | + /** |
|
491 | + * @param string $where |
|
492 | + */ |
|
487 | 493 | protected function setBoardProperty($board, $property, $where = null) |
488 | 494 | { |
489 | 495 | $to_prefix = $this->config->to_prefix; |
@@ -48,6 +48,7 @@ |
||
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Utility functions |
51 | + * @param string $percent |
|
51 | 52 | */ |
52 | 53 | function percent_to_px($percent) |
53 | 54 | { |
@@ -43,6 +43,9 @@ |
||
43 | 43 | return 'members'; |
44 | 44 | } |
45 | 45 | |
46 | + /** |
|
47 | + * @param string $name |
|
48 | + */ |
|
46 | 49 | protected function fetchSetting($name) |
47 | 50 | { |
48 | 51 | static $content = null; |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * Returns the specified $key. |
40 | 40 | * |
41 | 41 | * @param string $key Name of the variable |
42 | - * @return string|null Value of the specified $key |
|
42 | + * @return string Value of the specified $key |
|
43 | 43 | */ |
44 | 44 | public function __get($key) |
45 | 45 | { |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * Returns the specified $key. |
51 | 51 | * |
52 | 52 | * @param string $key Name of the variable |
53 | - * @return string|null Value of the specified $key |
|
53 | + * @return string Value of the specified $key |
|
54 | 54 | */ |
55 | 55 | public function get($key) |
56 | 56 | { |
@@ -155,6 +155,9 @@ discard block |
||
155 | 155 | $this->_loadImporter(BASEDIR . DS . 'Importers' . DS . $this->config->script); |
156 | 156 | } |
157 | 157 | |
158 | + /** |
|
159 | + * @param string $file |
|
160 | + */ |
|
158 | 161 | protected function _loadImporter($file) |
159 | 162 | { |
160 | 163 | $this->_preparse_xml($file); |
@@ -496,7 +499,7 @@ discard block |
||
496 | 499 | * destination system. |
497 | 500 | * |
498 | 501 | * @param int $do_steps |
499 | - * @return boolean |
|
502 | + * @return boolean|null |
|
500 | 503 | */ |
501 | 504 | public function doStep1($do_steps) |
502 | 505 | { |
@@ -559,7 +562,7 @@ discard block |
||
559 | 562 | * |
560 | 563 | * @global Database $db |
561 | 564 | * @global type $boardurl |
562 | - * @return boolean |
|
565 | + * @return boolean|null |
|
563 | 566 | */ |
564 | 567 | public function doStep3() |
565 | 568 | { |
@@ -68,7 +68,7 @@ |
||
68 | 68 | /** |
69 | 69 | * Gets the namespace seperator used by classes in the namespace of this class loader. |
70 | 70 | * |
71 | - * @return void |
|
71 | + * @return string |
|
72 | 72 | */ |
73 | 73 | public function getNamespaceSeparator() |
74 | 74 | { |