src/Entity/LaBaseCategory.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LaBaseCategoryRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use Gedmo\Mapping\Annotation as Gedmo;
  7. /**
  8.  * @ORM\Entity(repositoryClass=LaBaseCategoryRepository::class)
  9.  */
  10. class LaBaseCategory
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="boolean")
  20.      */
  21.     private bool $enabled false;
  22.     /**
  23.      * @Assert\NotBlank
  24.      * @ORM\Column(type="string", length=255)
  25.      */
  26.     private string $name;
  27.     /**
  28.      * @ORM\Column(type="string", nullable=true)
  29.      */
  30.     private string $color '#17a2b8';
  31.     /**
  32.      * @Gedmo\SortablePosition
  33.      * @ORM\Column
  34.      */
  35.     private int $position 0;
  36.     /**
  37.      * @ORM\Column(type="datetime", nullable=true)
  38.      */
  39.     private ?\DateTime $createdAt;
  40.     public function __construct()
  41.     {
  42.         $this->createdAt = new \DateTime();
  43.     }
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getName(): ?string
  49.     {
  50.         return $this->name;
  51.     }
  52.     public function setName(string $name): self
  53.     {
  54.         $this->name $name;
  55.         return $this;
  56.     }
  57.     public function getCreatedAt(): ?\DateTimeInterface
  58.     {
  59.         return $this->createdAt;
  60.     }
  61.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  62.     {
  63.         $this->createdAt $createdAt;
  64.         return $this;
  65.     }
  66.     public function __toString()
  67.     {
  68.         return $this->name;
  69.     }
  70.     public function isEnabled(): bool
  71.     {
  72.         return $this->enabled;
  73.     }
  74.     public function setEnabled(bool $enabled): void
  75.     {
  76.         $this->enabled $enabled;
  77.     }
  78.     public function getColor(): ?string
  79.     {
  80.         return $this->color;
  81.     }
  82.     public function setColor(?string $color): self
  83.     {
  84.         $this->color $color;
  85.         return $this;
  86.     }
  87.     public function getPosition(): ?int
  88.     {
  89.         return $this->position;
  90.     }
  91.     public function setPosition(int $position): self
  92.     {
  93.         $this->position $position;
  94.         return $this;
  95.     }
  96. }