src/Entity/Setting.php line 12

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity()
  7.  */
  8. class Setting implements SettingInterface
  9. {
  10.     use ResourceTrait;
  11.     use TimestampableTrait;
  12.     use CreatedByAwareTrait;
  13.     use UpdatedByAwareTrait;
  14.     /**
  15.      * @ORM\Column(type="string", name="`key`", nullable=false, unique=true)
  16.      */
  17.     private ?string $key null;
  18.     /**
  19.      * @ORM\Column(type="text", nullable=true)
  20.      */
  21.     private ?string $content null;
  22.     public function getKey(): ?string
  23.     {
  24.         return $this->key;
  25.     }
  26.     public function setKey(?string $key): void
  27.     {
  28.         $this->key $key;
  29.     }
  30.     public function getContent(): ?string
  31.     {
  32.         return $this->content;
  33.     }
  34.     public function setContent(?string $content): void
  35.     {
  36.         $this->content $content;
  37.     }
  38. }