src/Entity/Icon.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\IconRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassIconRepository::class)]
  6. class Icon
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $name null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $css null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $category null;
  18.     public function getId(): ?int
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function getName(): ?string
  23.     {
  24.         return $this->name;
  25.     }
  26.     public function setName(string $name): self
  27.     {
  28.         $this->name $name;
  29.         return $this;
  30.     }
  31.     public function getCss(): ?string
  32.     {
  33.         return $this->css;
  34.     }
  35.     public function setCss(string $css): self
  36.     {
  37.         $this->css $css;
  38.         return $this;
  39.     }
  40.     public function getCategory(): ?string
  41.     {
  42.         return $this->category;
  43.     }
  44.     public function setCategory(string $category): self
  45.     {
  46.         $this->category $category;
  47.         return $this;
  48.     }
  49. }