code = $code; $this->title = $title; $this->storeId = $storeId; $this->isActive = $isActive; } /** * {@inheritdoc} */ public function getCode() { return $this->code; } /** * {@inheritdoc} */ public function getTitle() { return $this->title; } /** * {@inheritdoc} */ public function getStoreId() { return $this->storeId; } /** * {@inheritdoc} */ public function getIsActive() { return $this->isActive; } }