Passed
Push — evenmoar ( fa6dba...65e344 )
by Emanuele
02:59
created
importer/Importers/destinations/SmfCommonOriginStep1.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -172,6 +172,9 @@
 block discarded – undo
172 172
 		return $this->config->destination->id_attach;
173 173
 	}
174 174
 
175
+	/**
176
+	 * @param string $source
177
+	 */
175 178
 	public function moveAvatar($row, $source, $filename)
176 179
 	{
177 180
 		$avatar_attach_folder = $this->getAvatarFolderId($row);
Please login to merge, or discard this patch.
importer/Importers/destinations/SmfCommonOriginStep2.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -73,6 +73,9 @@
 block discarded – undo
73 73
 		}
74 74
 	}
75 75
 
76
+	/**
77
+	 * @param string $where
78
+	 */
76 79
 	protected function setBoardProperty($board, $property, $where = null)
77 80
 	{
78 81
 		$to_prefix = $this->config->to_prefix;
Please login to merge, or discard this patch.
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/OpenImporter/XmlProcessor.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -94,6 +94,9 @@  discard block
 block discarded – undo
94 94
 		$this->skeleton = $skeleton;
95 95
 	}
96 96
 
97
+	/**
98
+	 * @param integer $key
99
+	 */
97 100
 	public function processSource($step, $key)
98 101
 	{
99 102
 		$this->current_step = $step;
@@ -205,6 +208,9 @@  discard block
 block discarded – undo
205 208
 		return $current;
206 209
 	}
207 210
 
211
+	/**
212
+	 * @param string $id
213
+	 */
208 214
 	public function doPreSqlStep($id)
209 215
 	{
210 216
 		if ($this->config->progress->isPreSqlDone())
@@ -299,6 +305,9 @@  discard block
 block discarded – undo
299 305
 			return 'insert';
300 306
 	}
301 307
 
308
+	/**
309
+	 * @param string $current_data
310
+	 */
302 311
 	protected function prepareSpecialResult($current_data, $special_limit)
303 312
 	{
304 313
 		$start = $this->config->progress->start;
Please login to merge, or discard this patch.