1 | <?php |
||
36 | class EeProductAttributeUpdateObserver extends ProductAttributeUpdateObserver |
||
37 | { |
||
38 | |||
39 | /** |
||
40 | * The trait providing basic EE product attribute functionality. |
||
41 | * |
||
42 | * @var \TechDivision\Import\Ee\Observers\EeAttributeObserverTrait |
||
43 | */ |
||
44 | use EeAttributeObserverTrait; |
||
45 | |||
46 | /** |
||
47 | * Initialize the category product with the passed attributes and returns an instance. |
||
48 | * |
||
49 | * @param array $attr The category product attributes |
||
50 | * |
||
51 | * @return array The initialized category product |
||
52 | */ |
||
53 | protected function initializeAttribute(array $attr) |
||
76 | |||
77 | /** |
||
78 | * Load's and return's the datetime attribute with the passed row/attribute/store ID. |
||
79 | * |
||
80 | * @param integer $pk The row ID of the attribute |
||
81 | * @param integer $attributeId The attribute ID of the attribute |
||
82 | * @param integer $storeId The store ID of the attribute |
||
83 | * |
||
84 | * @return array|null The datetime attribute |
||
85 | */ |
||
86 | protected function loadDatetimeAttribute($pk, $attributeId, $storeId) |
||
90 | |||
91 | /** |
||
92 | * Load's and return's the decimal attribute with the passed row/attribute/store ID. |
||
93 | * |
||
94 | * @param integer $pk The row ID of the attribute |
||
95 | * @param integer $attributeId The attribute ID of the attribute |
||
96 | * @param integer $storeId The store ID of the attribute |
||
97 | * |
||
98 | * @return array|null The decimal attribute |
||
99 | */ |
||
100 | protected function loadDecimalAttribute($pk, $attributeId, $storeId) |
||
104 | |||
105 | /** |
||
106 | * Load's and return's the integer attribute with the passed row/attribute/store ID. |
||
107 | * |
||
108 | * @param integer $pk The row ID of the attribute |
||
109 | * @param integer $attributeId The attribute ID of the attribute |
||
110 | * @param integer $storeId The store ID of the attribute |
||
111 | * |
||
112 | * @return array|null The integer attribute |
||
113 | */ |
||
114 | protected function loadIntAttribute($pk, $attributeId, $storeId) |
||
118 | |||
119 | /** |
||
120 | * Load's and return's the text attribute with the passed row/attribute/store ID. |
||
121 | * |
||
122 | * @param integer $pk The row ID of the attribute |
||
123 | * @param integer $attributeId The attribute ID of the attribute |
||
124 | * @param integer $storeId The store ID of the attribute |
||
125 | * |
||
126 | * @return array|null The text attribute |
||
127 | */ |
||
128 | protected function loadTextAttribute($pk, $attributeId, $storeId) |
||
132 | |||
133 | /** |
||
134 | * Load's and return's the varchar attribute with the passed row/attribute/store ID. |
||
135 | * |
||
136 | * @param integer $pk The row ID of the attribute |
||
137 | * @param integer $attributeId The attribute ID of the attribute |
||
138 | * @param integer $storeId The store ID of the attribute |
||
139 | * |
||
140 | * @return array|null The varchar attribute |
||
141 | */ |
||
142 | protected function loadVarcharAttribute($pk, $attributeId, $storeId) |
||
146 | } |
||
147 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.