src/Entity/Article.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ArticleRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassArticleRepository::class)]
  7. class Article
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $titre null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $miniDescription null;
  17.     #[ORM\Column(typeTypes::TEXT)]
  18.     private ?string $description null;
  19.     #[ORM\Column(length255)]
  20.     private ?string $image null;
  21.     #[ORM\ManyToOne(inversedBy'articles')]
  22.     #[ORM\JoinColumn(nullablefalse)]
  23.     private ?User $user null;
  24.     #[ORM\Column(nullabletrue)]
  25.     private ?\DateTimeImmutable $createdAt null;
  26.     #[ORM\Column(nullabletrue)]
  27.     private ?bool $statut null;
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getTitre(): ?string
  33.     {
  34.         return $this->titre;
  35.     }
  36.     public function setTitre(string $titre): static
  37.     {
  38.         $this->titre $titre;
  39.         return $this;
  40.     }
  41.     public function getMiniDescription(): ?string
  42.     {
  43.         return $this->miniDescription;
  44.     }
  45.     public function setMiniDescription(string $miniDescription): static
  46.     {
  47.         $this->miniDescription $miniDescription;
  48.         return $this;
  49.     }
  50.     public function getDescription(): ?string
  51.     {
  52.         return $this->description;
  53.     }
  54.     public function setDescription(string $description): static
  55.     {
  56.         $this->description $description;
  57.         return $this;
  58.     }
  59.     public function getImage(): ?string
  60.     {
  61.         return $this->image;
  62.     }
  63.     public function setImage(string $image): static
  64.     {
  65.         $this->image $image;
  66.         return $this;
  67.     }
  68.     public function getUser(): ?User
  69.     {
  70.         return $this->user;
  71.     }
  72.     public function setUser(?User $user): static
  73.     {
  74.         $this->user $user;
  75.         return $this;
  76.     }
  77.     public function getCreatedAt(): ?\DateTimeImmutable
  78.     {
  79.         return $this->createdAt;
  80.     }
  81.     public function setCreatedAt(?\DateTimeImmutable $createdAt): static
  82.     {
  83.         $this->createdAt $createdAt;
  84.         return $this;
  85.     }
  86.     public function isStatut(): ?bool
  87.     {
  88.         return $this->statut;
  89.     }
  90.     public function setStatut(?bool $statut): static
  91.     {
  92.         $this->statut $statut;
  93.         return $this;
  94.     }
  95. }