<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: \App\Repository\TypeSupportRepository::class)]
class TypeSupport
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private int $id;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $name= null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $nameSmall= null;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): self
{
$this->name = $name;
return $this;
}
public function getNameSmall(): ?string
{
return $this->nameSmall;
}
public function setNameSmall(?string $nameSmall): self
{
$this->nameSmall = $nameSmall;
return $this;
}
}