1 | <?php |
||
34 | class VariantSuperAttributeUpdateObserver extends VariantSuperAttributeObserver |
||
35 | { |
||
36 | |||
37 | /** |
||
38 | * Initialize the product super attribute with the passed attributes and returns an instance. |
||
39 | * |
||
40 | * @param array $attr The product super attribute attributes |
||
41 | * |
||
42 | * @return array The initialized product super attribute |
||
43 | */ |
||
44 | protected function initializeProductSuperAttribute(array $attr) |
||
59 | |||
60 | /** |
||
61 | * Initialize the product super attribute label with the passed attributes and returns an instance. |
||
62 | * |
||
63 | * @param array $attr The product super attribute label attributes |
||
64 | * |
||
65 | * @return array The initialized product super attribute label |
||
66 | */ |
||
67 | protected function initializeProductSuperAttributeLabel(array $attr) |
||
82 | |||
83 | /** |
||
84 | * Load's the product super attribute with the passed product/attribute ID. |
||
85 | * |
||
86 | * @param integer $productId The entity ID of the product super attribute's product |
||
87 | * @param integer $attributeId The attribute ID of the product super attributes attribute |
||
88 | * |
||
89 | * @return array The product super attribute |
||
90 | */ |
||
91 | protected function loadProductSuperAttribute($productId, $attributeId) |
||
95 | |||
96 | /** |
||
97 | * Load's the product super attribute label with the passed product super attribute/store ID. |
||
98 | * |
||
99 | * @param integer $productSuperAttributeId The product super attribute ID of the product super attribute label |
||
100 | * @param integer $storeId The store ID of the product super attribute label |
||
101 | * |
||
102 | * @return array The product super attribute label |
||
103 | */ |
||
104 | protected function loadProductSuperAttributeLabel($productSuperAttributeId, $storeId) |
||
108 | } |
||
109 |
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.