1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* TechDivision\Import\Product\Observers\LastEntityAndRowIdObserver |
5
|
|
|
* |
6
|
|
|
* NOTICE OF LICENSE |
7
|
|
|
* |
8
|
|
|
* This source file is subject to the Open Software License (OSL 3.0) |
9
|
|
|
* that is available through the world-wide-web at this URL: |
10
|
|
|
* http://opensource.org/licenses/osl-3.0.php |
11
|
|
|
* |
12
|
|
|
* PHP version 5 |
13
|
|
|
* |
14
|
|
|
* @author Tim Wagner <[email protected]> |
15
|
|
|
* @copyright 2019 TechDivision GmbH <[email protected]> |
16
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
17
|
|
|
* @link https://github.com/techdivision/import-product-ee |
18
|
|
|
* @link http://www.techdivision.com |
19
|
|
|
*/ |
20
|
|
|
|
21
|
|
|
namespace TechDivision\Import\Product\Ee\Observers; |
22
|
|
|
|
23
|
|
|
use TechDivision\Import\Product\Ee\Utils\MemberNames; |
24
|
|
|
use TechDivision\Import\Product\Observers\GenericSkuEntityIdMappingObserver; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* A generic oberserver implementation that provides functionality to add the SKU => entity/row ID |
28
|
|
|
* mapping for products that has not yet been processed or are NOT part of the actual CSV file. |
29
|
|
|
* |
30
|
|
|
* @author Tim Wagner <[email protected]> |
31
|
|
|
* @copyright 2019 TechDivision GmbH <[email protected]> |
32
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
33
|
|
|
* @link https://github.com/techdivision/import-product-ee |
34
|
|
|
* @link http://www.techdivision.com |
35
|
|
|
*/ |
36
|
|
|
class GenericSkuRowIdMappingObserver extends GenericSkuEntityIdMappingObserver |
37
|
|
|
{ |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* Map the PK for the product with the passed SKU. |
41
|
|
|
* |
42
|
|
|
* @param array $product The product to add the SKU => entity ID mapping for |
43
|
|
|
* |
44
|
|
|
* @return void |
45
|
|
|
*/ |
46
|
|
|
protected function addSkuPkMapping(array $product) |
47
|
|
|
{ |
48
|
|
|
|
49
|
|
|
// invoke the parent method (add the SKU => entity ID mapping) |
50
|
|
|
parent::addSkuPkMapping($product); |
51
|
|
|
|
52
|
|
|
// additionally add the SKU => row ID mapping |
53
|
|
|
$this->addSkuRowIdMapping($product[MemberNames::SKU], $product[MemberNames::ROW_ID]); |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
/** |
57
|
|
|
* Add the passed SKU => row ID mapping. |
58
|
|
|
* |
59
|
|
|
* @param string $sku The SKU |
60
|
|
|
* @param integer|null $rowId The optional entity ID, the last processed entity ID is used, if not set |
61
|
|
|
* |
62
|
|
|
* @return void |
63
|
|
|
*/ |
64
|
|
|
protected function addSkuRowIdMapping($sku, $rowId = null) |
65
|
|
|
{ |
66
|
|
|
$this->getSubject()->addSkuRowIdMapping($sku, $rowId); |
|
|
|
|
67
|
|
|
} |
68
|
|
|
} |
69
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: