Passed
Push — master ( f11089...634c17 )
by Aimeos
04:11
created

Done::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2018-2024
6
 * @package Controller
7
 * @subpackage Common
8
 */
9
10
11
namespace Aimeos\Controller\Jobs\Common\Catalog\Import\Csv\Processor;
12
13
14
/**
15
 * End point for the CSV import processors
16
 *
17
 * @package Controller
18
 * @subpackage Common
19
 */
20
class Done
21
	implements \Aimeos\Controller\Jobs\Common\Catalog\Import\Csv\Processor\Iface
22
{
23
	/**
24
	 * Initializes the object
25
	 *
26
	 * @param \Aimeos\MShop\ContextIface $context Context object
27
	 * @param array $mapping Associative list of field position in CSV as key and domain item key as value
28
	 * @param \Aimeos\Controller\Jobs\Common\Catalog\Import\Csv\Processor\Iface $processor Decorated processor
29
	 */
30
	public function __construct( \Aimeos\MShop\ContextIface $context, array $mapping,
31
		\Aimeos\Controller\Jobs\Common\Catalog\Import\Csv\Processor\Iface $processor = null )
32
	{
33
	}
34
35
36
	/**
37
	 * Stores all types for which no type items exist yet
38
	 */
39
	public function finish()
40
	{
41
	}
42
43
44
	/**
45
	 * Saves the catalog related data to the storage
46
	 *
47
	 * @param \Aimeos\MShop\Catalog\Item\Iface $catalog Catalog item with associated items
48
	 * @param array $data List of CSV fields with position as key and data as value
49
	 * @return array List of data which hasn't been imported
50
	 */
51
	public function process( \Aimeos\MShop\Catalog\Item\Iface $catalog, array $data ) : array
52
	{
53
		return $data;
54
	}
55
}
56