File tree 2 files changed +27
-1
lines changed
2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,17 @@ public function setWebsiteId($websiteId);
66
66
*/
67
67
public function getStoreGroupId ();
68
68
69
+ /**
70
+ * @param int $isActive
71
+ * @return $this
72
+ */
73
+ public function setIsActive ($ isActive );
74
+
75
+ /**
76
+ * @return int
77
+ */
78
+ public function getIsActive ();
79
+
69
80
/**
70
81
* @param int $storeGroupId
71
82
* @return $this
Original file line number Diff line number Diff line change 27
27
* @method int getSortOrder()
28
28
* @method int getStoreId()
29
29
* @method Store setSortOrder($value)
30
- * @method Store setIsActive($value)
31
30
*
32
31
* @SuppressWarnings(PHPMD.TooManyFields)
33
32
* @SuppressWarnings(PHPMD.ExcessiveClassComplexity)
@@ -1088,6 +1087,22 @@ public function setStoreGroupId($storeGroupId)
1088
1087
return $ this ->setGroupId ($ storeGroupId );
1089
1088
}
1090
1089
1090
+ /**
1091
+ * @inheritdoc
1092
+ */
1093
+ public function getIsActive ()
1094
+ {
1095
+ return $ this ->_getData ('is_active ' );
1096
+ }
1097
+
1098
+ /**
1099
+ * @inheritdoc
1100
+ */
1101
+ public function setIsActive ($ isActive )
1102
+ {
1103
+ return $ this ->setData ('is_active ' , $ isActive );
1104
+ }
1105
+
1091
1106
/**
1092
1107
* Retrieve default group identifier
1093
1108
*
You can’t perform that action at this time.
0 commit comments