serialized = false; } /** * Get id * * @return int */ public function getId() { return $this->id; } /** * Set name * * @param string $name * * @return SettingItem */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set value * * @param mixed $value * * @return SettingItem */ public function setValue($value) { $this->value = $value; return $this; } /** * Get value * * @return mixed */ public function getValue() { return $this->value; } /** * Set section * * @param string $section * * @return SettingItem */ public function setSection($section) { $this->section = $section; return $this; } /** * Get section * * @return string */ public function getSection() { return $this->section; } /** * @param bool $serialized * @return SettingItem */ public function setSerialized(bool $serialized): SettingItem { $this->serialized = $serialized; return $this; } /** * @return bool */ public function isSerialized(): bool { return $this->serialized; } }