<?phpnamespace App\Entity;use App\Repository\LogoPARepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: LogoPARepository::class)]class LogoPA{    #[ORM\Id]    #[ORM\GeneratedValue]    #[ORM\Column]    private ?int $id = null;    #[ORM\Column(length: 255)]    private ?string $name = null;    #[ORM\Column(length: 255)]    private ?string $slug = null;    #[ORM\Column(length: 255)]    private ?string $image = null;    #[ORM\Column(length: 255)]    private ?string $description = null;    #[ORM\Column]    private ?int $customerindex = null;    #[ORM\Column]    private ?bool $active = null;    public function getId(): ?int    {        return $this->id;    }    public function getName(): ?string    {        return $this->name;    }    public function setName(string $name): static    {        $this->name = $name;        return $this;    }    public function getSlug(): ?string    {        return $this->slug;    }    public function setSlug(string $slug): static    {        $this->slug = $slug;        return $this;    }    public function getImage(): ?string    {        return $this->image;    }    public function setImage(string $image): static    {        $this->image = $image;        return $this;    }    public function getDescription(): ?string    {        return $this->description;    }    public function setDescription(string $description): static    {        $this->description = $description;        return $this;    }    public function getCustomerindex(): ?int    {        return $this->customerindex;    }    public function setCustomerindex(int $customerindex): static    {        $this->customerindex = $customerindex;        return $this;    }    public function isActive(): ?bool    {        return $this->active;    }    public function setActive(bool $active): static    {        $this->active = $active;        return $this;    }}