Completed
Pull Request — master (#101)
by Spuds
02:47
created
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.