File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 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);
6666 */
6767 public function getStoreGroupId ();
6868
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+
6980 /**
7081 * @param int $storeGroupId
7182 * @return $this
Original file line number Diff line number Diff line change 2727 * @method int getSortOrder()
2828 * @method int getStoreId()
2929 * @method Store setSortOrder($value)
30- * @method Store setIsActive($value)
3130 *
3231 * @SuppressWarnings(PHPMD.TooManyFields)
3332 * @SuppressWarnings(PHPMD.ExcessiveClassComplexity)
@@ -1088,6 +1087,22 @@ public function setStoreGroupId($storeGroupId)
10881087 return $ this ->setGroupId ($ storeGroupId );
10891088 }
10901089
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+
10911106 /**
10921107 * Retrieve default group identifier
10931108 *
You can’t perform that action at this time.
0 commit comments