'Wordpress', self::ENGINE_JB => 'JetBackup', self::ENGINE_SGB => 'SGB', ]; public function setEngine(int $value):void { $this->set(self::ENGINE, $value); } public function getEngine():int { return (int) $this->get(self::ENGINE, self::ENGINE_WP); } public function getEngineName():string { return self::ENGINE_NAMES[$this->getEngine()]; } }