src/Entity/Board.php line 11

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BoardRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Knp\DoctrineBehaviors\Contract\Entity\TranslatableInterface;
  6. use Knp\DoctrineBehaviors\Model\Translatable\TranslatableTrait;
  7. #[ORM\Entity(repositoryClassBoardRepository::class)]
  8. class Board implements TranslatableInterface
  9. {
  10.     const BOARD_TYPE_TUZ 0;
  11.     const BOARD_TYPE_KHZ 1;
  12.     use TranslatableTrait;
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\Column(length500)]
  18.     private ?string $image null;
  19.     #[ORM\Column]
  20.     private ?int $type null;
  21.     public function getId(): ?int
  22.     {
  23.         return $this->id;
  24.     }
  25.     public function getImage(): ?string
  26.     {
  27.         return $this->image;
  28.     }
  29.     public function setImage(string $image): self
  30.     {
  31.         $this->image $image;
  32.         return $this;
  33.     }
  34.     public function getType(): ?int
  35.     {
  36.         return $this->type;
  37.     }
  38.     public function setType(int $type): self
  39.     {
  40.         $this->type $type;
  41.         return $this;
  42.     }
  43. }