src/Entity/NewsCategory.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\NewsCategoryRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. /**
  7.  * @ORM\Entity(repositoryClass=NewsCategoryRepository::class)
  8.  */
  9. class NewsCategory
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="boolean")
  19.      */
  20.     private bool $enabled false;
  21.     /**
  22.      * @Assert\NotBlank
  23.      * @ORM\Column(type="string", length=255)
  24.      */
  25.     private string $name;
  26.     /**
  27.      * @ORM\Column(type="datetime", nullable=true)
  28.      */
  29.     private ?\DateTime $createdAt;
  30.     public function __construct()
  31.     {
  32.         $this->createdAt = new \DateTime();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getName(): ?string
  39.     {
  40.         return $this->name;
  41.     }
  42.     public function setName(string $name): self
  43.     {
  44.         $this->name $name;
  45.         return $this;
  46.     }
  47.     public function getCreatedAt(): ?\DateTimeInterface
  48.     {
  49.         return $this->createdAt;
  50.     }
  51.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  52.     {
  53.         $this->createdAt $createdAt;
  54.         return $this;
  55.     }
  56.     public function __toString()
  57.     {
  58.         return $this->name;
  59.     }
  60.     public function isEnabled(): bool
  61.     {
  62.         return $this->enabled;
  63.     }
  64.     public function setEnabled(bool $enabled): void
  65.     {
  66.         $this->enabled $enabled;
  67.     }
  68. }