Completed
Pull Request — master (#101)
by Spuds
02:36
created
importer/Importers/elkarte1.0/smf2-0_importer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -49,6 +49,9 @@
 block discarded – undo
49 49
 		return 'members';
50 50
 	}
51 51
 
52
+	/**
53
+	 * @param string $name
54
+	 */
52 55
 	protected function fetchSetting($name)
53 56
 	{
54 57
 		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
@@ -49,6 +49,9 @@
 block discarded – undo
49 49
 		return 'members';
50 50
 	}
51 51
 
52
+	/**
53
+	 * @param string $name
54
+	 */
52 55
 	protected function fetchSetting($name)
53 56
 	{
54 57
 		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
@@ -49,6 +49,9 @@
 block discarded – undo
49 49
 		return 'members';
50 50
 	}
51 51
 
52
+	/**
53
+	 * @param string $name
54
+	 */
52 55
 	protected function fetchSetting($name)
53 56
 	{
54 57
 		static $content = null;
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
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
  *
52 52
  * @param string $content
53 53
  *
54
- * @return mixed|string
54
+ * @return string
55 55
  */
56 56
 function vb4_replace_bbc($content)
57 57
 {
Please login to merge, or discard this patch.
importer/OpenImporter/XmlProcessor.php 1 patch
Doc Comments   +11 added lines, -1 removed lines patch added patch discarded remove patch
@@ -230,6 +230,9 @@  discard block
 block discarded – undo
230 230
 		}
231 231
 	}
232 232
 
233
+	/**
234
+	 * @param string $current_data
235
+	 */
233 236
 	protected function fixCurrentData($current_data)
234 237
 	{
235 238
 		if (strpos($current_data, '{$') !== false)
@@ -240,6 +243,9 @@  discard block
 block discarded – undo
240 243
 		return $current_data;
241 244
 	}
242 245
 
246
+	/**
247
+	 * @param string $special_table
248
+	 */
243 249
 	protected function insertRows($special_table)
244 250
 	{
245 251
 		// Nothing to insert?
@@ -272,6 +278,10 @@  discard block
 block discarded – undo
272 278
 				(', $insert_rows) . ")");
273 279
 	}
274 280
 
281
+	/**
282
+	 * @param null|string $special_code
283
+	 * @param string $special_table
284
+	 */
275 285
 	protected function prepareRow($special_code, $special_table)
276 286
 	{
277 287
 		// Take case of preparsecode
@@ -416,7 +426,7 @@  discard block
 block discarded – undo
416 426
 
417 427
 	/**
418 428
 	 * Process a <detect> statement
419
-	 * @param $substep
429
+	 * @param integer $substep
420 430
 	 */
421 431
 	protected function doDetect($substep)
422 432
 	{
Please login to merge, or discard this patch.