feature = (string) $feature; return $this; } /** * Get the feature that is to be enabled or disabled * * @return string */ public function getFeature() { return $this->feature; } /** * Set whether the feature should be enabled or disabled * * @param bool $enabled * * @return $this */ public function setEnabled($enabled = true) { $this->enabled = (bool) $enabled; return $this; } /** * Get whether the feature should be enabled or disabled * * @return bool */ public function getEnabled() { return $this->enabled; } }