Completed
Push — fix ( b531af )
by Emanuele
02:20
created
importer/OpenImporter/ImportManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -420,6 +420,9 @@
 block discarded – undo
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';
Please login to merge, or discard this patch.
importer/Importers/elkarte1.0/smf1-1_importer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
importer/Importers/elkarte1.0/smf2-0_importer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
importer/Importers/SmfCommonSource.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -95,6 +95,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
importer/Importers/wedge0.1/phpbb3_importer.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -48,6 +48,7 @@
 block discarded – undo
48 48
 
49 49
 /**
50 50
  * Utility functions
51
+ * @param string $percent
51 52
  */
52 53
 function percent_to_px($percent)
53 54
 {
Please login to merge, or discard this patch.
importer/Importers/wedge0.1/smf2-0_importer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
importer/OpenImporter/DummyLang.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 	{
Please login to merge, or discard this patch.
importer/OpenImporter/Importer.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -155,6 +155,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	{
Please login to merge, or discard this patch.
importer/OpenImporter/SplClassLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.