src/Entity/Settings.php line 9

Open in your IDE?
  1. <?php
  2. // src/Entity/Settings.php
  3. namespace App\Entity;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity]
  6. class Settings
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private ?int $id null;
  12.     #[ORM\Column(type'boolean')]
  13.     private bool $maintenanceMode false;
  14.     #[ORM\Column(type'boolean')]
  15.     private bool $darkMode false;
  16.     // Weitere Einstellungen können hier hinzugefügt werden
  17.     public function isDarkMode(): bool
  18.     {
  19.         return $this->darkMode;
  20.     }
  21.     public function setDarkMode(bool $darkMode): self
  22.     {
  23.         $this->darkMode $darkMode;
  24.         return $this;
  25.     }
  26.     
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function isMaintenanceMode(): bool
  32.     {
  33.         return $this->maintenanceMode;
  34.     }
  35.     public function setMaintenanceMode(bool $maintenanceMode): self
  36.     {
  37.         $this->maintenanceMode $maintenanceMode;
  38.         return $this;
  39.     }
  40. }