1 | <?php |
||
35 | class BundleOptionValueUpdateObserver extends BundleOptionValueObserver |
||
36 | { |
||
37 | |||
38 | /** |
||
39 | * Initialize the bundle option value with the passed attributes and returns an instance. |
||
40 | * |
||
41 | * @param array $attr The bundle option value attributes |
||
42 | * |
||
43 | * @return array|null The initialized bundle option value, or NULL if the option value already exists |
||
44 | */ |
||
45 | protected function initializeBundleOptionValue(array $attr) |
||
63 | |||
64 | /** |
||
65 | * Load's the bundle option value with the passed name, store + parent ID. |
||
66 | * |
||
67 | * @param string $title The title of the bundle option value to be returned |
||
68 | * @param integer $storeId The store ID of the bundle option value to be returned |
||
69 | * @param integer $parentId The entity of the product the bundle option value is related with |
||
70 | * |
||
71 | * @return array The bundle option |
||
72 | */ |
||
73 | protected function loadBundleOptionValue($title, $storeId, $parentId) |
||
77 | |||
78 | /** |
||
79 | * Return the entity ID for the passed SKU. |
||
80 | * |
||
81 | * @param string $sku The SKU to return the entity ID for |
||
82 | * |
||
83 | * @return integer The mapped entity ID |
||
84 | * @throws \Exception Is thrown if the SKU is not mapped yet |
||
85 | */ |
||
86 | protected function mapSku($sku) |
||
87 | { |
||
88 | return $this->getSubject()->mapSkuToEntityId($sku); |
||
89 | } |
||
90 | |||
91 | /** |
||
92 | * Return's the store ID of the actual row, or of the default store |
||
93 | * if no store view code is set in the CSV file. |
||
94 | * |
||
95 | * @param string|null $default The default store view code to use, if no store view code is set in the CSV file |
||
96 | * |
||
97 | * @return integer The ID of the actual store |
||
98 | * @throws \Exception Is thrown, if the store with the actual code is not available |
||
99 | */ |
||
100 | protected function getRowStoreId($default = null) |
||
104 | } |
||
105 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.