src/Entity/Category.php line 12

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CategoryRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassCategoryRepository::class)]
  9. class Category
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length75)]
  16.     private ?string $name null;
  17.     #[ORM\Column(typeTypes::TEXT)]
  18.     private ?string $description null;
  19.     #[ORM\OneToMany(mappedBy'category'targetEntityArticles::class)]
  20.     private Collection $articles;
  21.     public function __construct()
  22.     {
  23.         $this->articles = new ArrayCollection();
  24.     }
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getName(): ?string
  30.     {
  31.         return $this->name;
  32.     }
  33.     public function setName(string $name): self
  34.     {
  35.         $this->name $name;
  36.         return $this;
  37.     }
  38.     public function getDescription(): ?string
  39.     {
  40.         return $this->description;
  41.     }
  42.     public function setDescription(string $description): self
  43.     {
  44.         $this->description $description;
  45.         return $this;
  46.     }
  47.     
  48.     // @return Collection<int, Articles>
  49.     
  50.     public function getArticles(): Collection
  51.     {
  52.         return $this->articles;
  53.     }
  54.     public function addArticle(Articles $article): self
  55.     {
  56.         if (!$this->articles->contains($article)) {
  57.             $this->articles->add($article);
  58.             $article->setCategory($this);
  59.         }
  60.         return $this;
  61.     }
  62.     public function removeArticle(Articles $article): self
  63.     {
  64.         if ($this->articles->removeElement($article)) {
  65.             // set the owning side to null (unless already changed)
  66.             if ($article->getCategory() === $this) {
  67.                 $article->setCategory(null);
  68.             }
  69.         }
  70.         return $this;
  71.     }
  72.      // Qu'est-ce que je veux afficher à l'écran quand j'ai 1 objet Category
  73.      public function __toString() {
  74.         return $this->getName();
  75.     }
  76. }