Completed
Push — updates ( 690025 )
by Emanuele
02:26
created
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/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.
importer/Importers/elkarte1.0/smf1-1_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/Importers/elkarte1.0/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/Importers/elkarte1.0/smf2-1_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/Importers/elkarte1.0/wedge_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/Importers/SmfCommonSource.php 1 patch
Doc Comments   +13 added lines, -3 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 	 *
101 101
 	 * @param $path
102 102
 	 *
103
-	 * @return bool|string
103
+	 * @return false|string
104 104
 	 */
105 105
 	public function getDestinationURL($path)
106 106
 	{
@@ -149,6 +149,9 @@  discard block
 block discarded – undo
149 149
 		return array($db_server, $db_user, $db_passwd, $db_persist, $db_prefix, $db_name);
150 150
 	}
151 151
 
152
+	/**
153
+	 * @param string $name
154
+	 */
152 155
 	protected function fetchSetting($name)
153 156
 	{
154 157
 		static $content = null;
@@ -349,7 +352,7 @@  discard block
 block discarded – undo
349 352
 	 *
350 353
 	 * @param string[] $folders
351 354
 	 *
352
-	 * @return bool
355
+	 * @return false|null
353 356
 	 */
354 357
 	protected function createAttachFoldersStructure($folders)
355 358
 	{
@@ -384,7 +387,7 @@  discard block
 block discarded – undo
384 387
 	 *
385 388
 	 * @param string[] $folders
386 389
 	 *
387
-	 * @return bool|string
390
+	 * @return string|false
388 391
 	 */
389 392
 	protected function guessBase($folders)
390 393
 	{
@@ -410,6 +413,10 @@  discard block
 block discarded – undo
410 413
 		return false;
411 414
 	}
412 415
 
416
+	/**
417
+	 * @param string $dir
418
+	 * @param string[] $folders
419
+	 */
413 420
 	protected function isCommon($dir, $folders)
414 421
 	{
415 422
 		foreach ($folders as $folder)
@@ -577,6 +584,9 @@  discard block
 block discarded – undo
577 584
 		}
578 585
 	}
579 586
 
587
+	/**
588
+	 * @param string $where
589
+	 */
580 590
 	protected function setBoardProperty($board, $property, $where = null)
581 591
 	{
582 592
 		$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, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
  *
70 70
  * @param string $message
71 71
  *
72
- * @return mixed|string
72
+ * @return string
73 73
  */
74 74
 function phpbb_replace_bbc($message)
75 75
 {
Please login to merge, or discard this patch.